Something went wrong. Try again.
@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
Something went wrong. Try again.
610 B · 28 lines
PHP
1234567891011121314151617181920212223242526272829<?php
class Stripe_Token extends Stripe_ApiResource{ /** * @param string $id The ID of the token to retrieve. * @param string|null $apiKey * * @return Stripe_Token */ public static function retrieve($id, $apiKey=null) { $class = get_class(); return self::_scopedRetrieve($class, $id, $apiKey); }
/** * @param array|null $params * @param string|null $apiKey * * @return Stripe_Coupon The created token. */ public static function create($params=null, $apiKey=null) { $class = get_class(); return self::_scopedCreate($class, $params, $apiKey); }}