| 1 | <?php declare(strict_types=1); |
||
| 5 | abstract class AbstractApi implements ApiInterface |
||
| 6 | { |
||
| 7 | protected $params; |
||
| 8 | |||
| 9 | protected function isRequired(array $param): array |
||
| 13 | |||
| 14 | protected function notRequired(array $param): array |
||
| 18 | |||
| 19 | protected function query(array $param): array |
||
| 23 | |||
| 24 | protected function url(array $param): array |
||
| 28 | |||
| 29 | public function documented(array $param): array |
||
| 33 | } |
||
| 34 |