/home/techb158/ileadtechnology.com/vendor/cartalyst/stripe/src/Api
Edit: /home/techb158/ileadtechnology.com/vendor/cartalyst/stripe/src/Api/Prices.php (1436B)
_post('prices', $parameters);
}
/**
* Retrieves an existing price.
*
* @param string $priceId
* @return array
*/
public function find($priceId)
{
return $this->_get("prices/{$priceId}");
}
/**
* Updates an existing price.
*
* @param string $priceId
* @param array $parameters
* @return array
*/
public function update($priceId, array $parameters = [])
{
return $this->_post("prices/{$priceId}", $parameters);
}
/**
* Returns a list of all the prices.
*
* @param array $parameters
* @return array
*/
public function all(array $parameters = [])
{
return $this->_get('prices', $parameters);
}
}