| 1 | <?php |
||
| 15 | class GenerateArticleImagesQuery extends Base |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array |
||
| 19 | */ |
||
| 20 | protected $methodsAllowed = [ |
||
| 21 | Constants::METHOD_UPDATE, |
||
| 22 | ]; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Gets the class for the entities. |
||
| 26 | * |
||
| 27 | * @return string |
||
| 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 |