1 | <?php |
||
7 | class CountriesQuery 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 | * Gets the query path to look for entities. |
||
30 | * E.G: 'variants' or 'articles' |
||
31 | * |
||
32 | * @return string |
||
33 | */ |
||
34 | protected function getQueryPath() |
||
38 | } |
||
39 |