Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <?php
-
- namespace Lc\CaracoleBundle\Controller\Reduction;
-
- use Lc\CaracoleBundle\Controller\AbstractAdminController;
- use Lc\SovBundle\Repository\RepositoryQueryInterface;
-
- abstract class ReductionCatalogAdminController extends AbstractAdminController
- {
- public function getRepositoryQuery(): RepositoryQueryInterface
- {
- return $this->getReductionCatalogContainer()->getRepositoryQuery();
- }
-
- public function createEntity(string $entityFqcn)
- {
- return $this->getReductionCatalogContainer()->getFactory()->create($this->getMerchantCurrent());
- }
- }
|