| 1 | <?php |
||
| 13 | class AddressQuery extends Base |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var array |
||
| 17 | */ |
||
| 18 | protected $methodsAllowed = [ |
||
| 19 | Constants::METHOD_CREATE, |
||
| 20 | Constants::METHOD_GET, |
||
| 21 | Constants::METHOD_GET_BATCH, |
||
| 22 | Constants::METHOD_UPDATE, |
||
| 23 | Constants::METHOD_DELETE, |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | protected function getClass() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | 1 | protected function getQueryPath() |
|
| 41 | } |
||
| 42 |