You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
-
- namespace Lc\CaracoleBundle\EventSubscriber;
-
- use Doctrine\ORM\EntityManagerInterface;
- use Lc\CaracoleBundle\Definition\MerchantSettingDefinitionInterface;
- use Lc\CaracoleBundle\Factory\Setting\MerchantSettingFactory;
- use Lc\CaracoleBundle\Factory\Setting\SectionSettingFactory;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\CaracoleBundle\Definition\SectionSettingDefinitionInterface;
- use Lc\CaracoleBundle\Repository\Merchant\MerchantRepository;
- use Lc\CaracoleBundle\Repository\Section\OpeningRepositoryQuery;
- use Lc\CaracoleBundle\Repository\Section\SectionRepository;
- use Symfony\Component\EventDispatcher\EventSubscriberInterface;
- use Symfony\Component\HttpKernel\KernelEvents;
-
- class OpeningEventSubscriber implements EventSubscriberInterface
- {
- protected $entityManager;
- protected $openingRepositoryQuery;
-
- public function __construct(
- EntityManagerInterface $entityManager,
- OpeningRepositoryQuery $openingRepositoryQuery
- ) {
- $this->entityManager = $entityManager;
- $this->openingRepositoryQuery = $openingRepositoryQuery;
- }
-
- public static function getSubscribedEvents()
- {
- return [
- KernelEvents::CONTROLLER => ['initOpenings']
- ];
- }
-
- public function initOpenings()
- {
-
- }
-
- }
|