| 1 | <?php |
||
| 14 | class GenerateArticleImagesQuery extends Base |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var array |
||
| 18 | */ |
||
| 19 | protected $methodsAllowed = [ |
||
| 20 | Constants::METHOD_UPDATE, |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Gets the class for the entities. |
||
| 25 | * |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | protected function getClass() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Gets the query path to look for entities. |
||
| 35 | * E.G: 'variants' or 'articles' |
||
| 36 | * |
||
| 37 | * @return string |
||
| 38 | */ |
||
| 39 | protected function getQueryPath() |
||
| 43 | } |
||
| 44 |