Fix: Corriger le type PDO dans StripeService et retirer getConnection()
This commit is contained in:
61
api/vendor/stripe/stripe-php/lib/Service/Issuing/TokenService.php
vendored
Normal file
61
api/vendor/stripe/stripe-php/lib/Service/Issuing/TokenService.php
vendored
Normal file
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
|
||||
namespace Stripe\Service\Issuing;
|
||||
|
||||
/**
|
||||
* @phpstan-import-type RequestOptionsArray from \Stripe\Util\RequestOptions
|
||||
*
|
||||
* @psalm-import-type RequestOptionsArray from \Stripe\Util\RequestOptions
|
||||
*/
|
||||
class TokenService extends \Stripe\Service\AbstractService
|
||||
{
|
||||
/**
|
||||
* Lists all Issuing <code>Token</code> objects for a given card.
|
||||
*
|
||||
* @param null|array{card: string, created?: array|int, ending_before?: string, expand?: string[], limit?: int, starting_after?: string, status?: string} $params
|
||||
* @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
|
||||
*
|
||||
* @return \Stripe\Collection<\Stripe\Issuing\Token>
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*/
|
||||
public function all($params = null, $opts = null)
|
||||
{
|
||||
return $this->requestCollection('get', '/v1/issuing/tokens', $params, $opts);
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieves an Issuing <code>Token</code> object.
|
||||
*
|
||||
* @param string $id
|
||||
* @param null|array{expand?: string[]} $params
|
||||
* @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
|
||||
*
|
||||
* @return \Stripe\Issuing\Token
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*/
|
||||
public function retrieve($id, $params = null, $opts = null)
|
||||
{
|
||||
return $this->request('get', $this->buildPath('/v1/issuing/tokens/%s', $id), $params, $opts);
|
||||
}
|
||||
|
||||
/**
|
||||
* Attempts to update the specified Issuing <code>Token</code> object to the status
|
||||
* specified.
|
||||
*
|
||||
* @param string $id
|
||||
* @param null|array{expand?: string[], status: string} $params
|
||||
* @param null|RequestOptionsArray|\Stripe\Util\RequestOptions $opts
|
||||
*
|
||||
* @return \Stripe\Issuing\Token
|
||||
*
|
||||
* @throws \Stripe\Exception\ApiErrorException if the request fails
|
||||
*/
|
||||
public function update($id, $params = null, $opts = null)
|
||||
{
|
||||
return $this->request('post', $this->buildPath('/v1/issuing/tokens/%s', $id), $params, $opts);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user