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