1 | <?php |
||
21 | class SubscriptionScheduleRevision extends ApiResource |
||
22 | { |
||
23 | |||
24 | const OBJECT_NAME = "subscription_schedule_revision"; |
||
25 | |||
26 | use ApiOperations\All; |
||
27 | use ApiOperations\Retrieve; |
||
28 | |||
29 | /** |
||
30 | * @return string The API URL for this Subscription Schedule Revision. |
||
31 | */ |
||
32 | public function instanceUrl() |
||
51 | |||
52 | /** |
||
53 | * @param array|string $_id |
||
54 | * @param array|string|null $_opts |
||
55 | * |
||
56 | * @throws \Stripe\Error\InvalidRequest |
||
57 | */ |
||
58 | public static function retrieve($_id, $_opts = null) |
||
64 | |||
65 | /** |
||
66 | * @param array|string $_id |
||
67 | * @param array|string|null $_opts |
||
68 | * |
||
69 | * @throws \Stripe\Error\InvalidRequest |
||
70 | */ |
||
71 | public static function all($params = null, $opts = null) |
||
77 | } |
||
78 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.