| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class Plan extends ApiResource |
||
| 11 | { |
||
| 12 | const OBJECT_NAME = 'plans'; |
||
| 13 | |||
| 14 | use Create; |
||
| 15 | use Update; |
||
| 16 | use Delete; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return array|object |
||
| 20 | * @throws Exceptions\InvalidArgumentException |
||
| 21 | * @throws Exceptions\IsNullException |
||
| 22 | * @link https://docs.mono.co/reference#list-plans |
||
| 23 | */ |
||
| 24 | public static function list() |
||
| 31 |