1 | <?php |
||
13 | class MediaQuery 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 | * Gets the query path to look for entities. |
||
36 | * E.G: 'variants' or 'articles'. |
||
37 | * |
||
38 | * @return string |
||
39 | */ |
||
40 | protected function getQueryPath() |
||
44 | } |
||
45 |