Files
dolibarr/htdocs/includes/stripe/lib/SingletonApiResource.php
Alexandre SPANGARO d0e27f67e7 Add plugins Stripe
2017-04-18 05:44:08 +02:00

37 lines
764 B
PHP

<?php
namespace Stripe;
/**
* Class SingletonApiResource
*
* @package Stripe
*/
abstract class SingletonApiResource extends ApiResource
{
protected static function _singletonRetrieve($options = null)
{
$opts = Util\RequestOptions::parse($options);
$instance = new static(null, $opts);
$instance->refresh();
return $instance;
}
/**
* @return string The endpoint associated with this singleton class.
*/
public static function classUrl()
{
$base = static::className();
return "/v1/${base}";
}
/**
* @return string The endpoint associated with this singleton API resource.
*/
public function instanceUrl()
{
return static::classUrl();
}
}