Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97877156
SingletonApiResource.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jan 7, 02:16
Size
717 B
Mime Type
text/x-php
Expires
Thu, Jan 9, 02:16 (2 d)
Engine
blob
Format
Raw Data
Handle
23426011
Attached To
rPH Phabricator
SingletonApiResource.php
View Options
<?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"
;
}
}
Event Timeline
Log In to Comment