mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
643c1c4a52
Summary: Ref T2787. This brings us up to date. Test Plan: `git clone` Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T2787 Differential Revision: https://secure.phabricator.com/D9916
37 lines
976 B
PHP
37 lines
976 B
PHP
<?php
|
|
|
|
class Stripe_List extends Stripe_Object
|
|
{
|
|
public function all($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
list($response, $apiKey) = $requestor->request(
|
|
'get',
|
|
$this['url'],
|
|
$params
|
|
);
|
|
return Stripe_Util::convertToStripeObject($response, $apiKey);
|
|
}
|
|
|
|
public function create($params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
list($response, $apiKey) = $requestor->request(
|
|
'post', $this['url'], $params
|
|
);
|
|
return Stripe_Util::convertToStripeObject($response, $apiKey);
|
|
}
|
|
|
|
public function retrieve($id, $params=null)
|
|
{
|
|
$requestor = new Stripe_ApiRequestor($this->_apiKey);
|
|
$base = $this['url'];
|
|
$id = Stripe_ApiRequestor::utf8($id);
|
|
$extn = urlencode($id);
|
|
list($response, $apiKey) = $requestor->request(
|
|
'get', "$base/$extn", $params
|
|
);
|
|
return Stripe_Util::convertToStripeObject($response, $apiKey);
|
|
}
|
|
|
|
}
|