mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 04:52:49 +00:00
35 lines
693 B
PHP
35 lines
693 B
PHP
<?php
|
|
|
|
namespace Stripe;
|
|
|
|
/**
|
|
* Class OrderReturn
|
|
*
|
|
* @package Stripe
|
|
*/
|
|
class OrderReturn extends ApiResource
|
|
{
|
|
/**
|
|
* @param array|string $id The ID of the order return to retrieve, or an
|
|
* options array containing an `id` field.
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return Order
|
|
*/
|
|
public static function retrieve($id, $opts = null)
|
|
{
|
|
return self::_retrieve($id, $opts);
|
|
}
|
|
|
|
/**
|
|
* @param array|null $params
|
|
* @param array|string|null $opts
|
|
*
|
|
* @return Collection of OrderReturns
|
|
*/
|
|
public static function all($params = null, $opts = null)
|
|
{
|
|
return self::_all($params, $opts);
|
|
}
|
|
}
|