| 1 | <?php |
||
| 7 | class ShopsQuery extends Base |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array |
||
| 11 | */ |
||
| 12 | protected $methodsAllowed = [ |
||
| 13 | Constants::METHOD_CREATE, |
||
| 14 | Constants::METHOD_GET, |
||
| 15 | Constants::METHOD_GET_BATCH, |
||
| 16 | Constants::METHOD_UPDATE, |
||
| 17 | Constants::METHOD_DELETE, |
||
| 18 | ]; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return mixed |
||
| 22 | */ |
||
| 23 | protected function getClass() |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | protected function getQueryPath() |
||
| 35 | } |
||
| 36 |