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