Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

20 lines
580B

  1. <?php
  2. namespace Lc\CaracoleBundle\Controller\Reduction;
  3. use Lc\CaracoleBundle\Controller\AbstractAdminController;
  4. use Lc\SovBundle\Repository\RepositoryQueryInterface;
  5. abstract class ReductionCatalogAdminController extends AbstractAdminController
  6. {
  7. public function getRepositoryQuery(): RepositoryQueryInterface
  8. {
  9. return $this->getReductionCatalogContainer()->getRepositoryQuery();
  10. }
  11. public function createEntity(string $entityFqcn)
  12. {
  13. return $this->getReductionCatalogContainer()->getFactory()->create($this->getMerchantCurrent());
  14. }
  15. }