- <?php
-
- namespace Lc\ShopBundle\Controller;
-
- use Doctrine\ORM\EntityManagerInterface;
- use Lc\ShopBundle\Context\TaxRateInterface;
- use Lc\ShopBundle\Form\TaxRateType;
-
- class TaxRateController extends AbstractController
- {
-
- protected $repo;
-
- public function __construct(EntityManagerInterface $entityManager)
- {
- //Cette valeur sera récrite dans le AbstractController pour qu'elle pointe vers l'entité et non plus l'interface
- $this->class = TaxRateInterface::class;
- $this->type = TaxRateType::class;
- $this->template = "default";
- $this->routePrefix = "lc_shop_tax_rate";
-
- parent::__construct($entityManager);
-
- }
-
- public function newBeforeFlush(){
-
- }
-
- }
|