mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02: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
31 lines
717 B
PHP
31 lines
717 B
PHP
<?php
|
|
|
|
abstract class Stripe_SingletonApiResource extends Stripe_ApiResource
|
|
{
|
|
protected static function _scopedSingletonRetrieve($class, $apiKey=null)
|
|
{
|
|
$instance = new $class(null, $apiKey);
|
|
$instance->refresh();
|
|
return $instance;
|
|
}
|
|
|
|
/**
|
|
* @param Stripe_SingletonApiResource $class
|
|
* @return string The endpoint associated with this singleton class.
|
|
*/
|
|
public static function classUrl($class)
|
|
{
|
|
$base = self::className($class);
|
|
return "/v1/${base}";
|
|
}
|
|
|
|
/**
|
|
* @return string The endpoint associated with this singleton API resource.
|
|
*/
|
|
public function instanceUrl()
|
|
{
|
|
$class = get_class($this);
|
|
$base = self::classUrl($class);
|
|
return "$base";
|
|
}
|
|
}
|