Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

20 Zeilen
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. }