Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

23 rindas
638B

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