Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

TaxRateController.php 792B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Lc\ShopBundle\Controller;
  3. use Doctrine\ORM\EntityManagerInterface;
  4. use Lc\ShopBundle\Context\TaxRateInterface;
  5. use Lc\ShopBundle\Form\TaxRateType;
  6. class TaxRateController extends AbstractController
  7. {
  8. protected $repo;
  9. public function __construct(EntityManagerInterface $entityManager)
  10. {
  11. //Cette valeur sera récrite dans le AbstractController pour qu'elle pointe vers l'entité et non plus l'interface
  12. $this->class = TaxRateInterface::class;
  13. $this->type = TaxRateType::class;
  14. $this->template = "default";
  15. $this->routePrefix = "lc_shop_tax_rate";
  16. parent::__construct($entityManager);
  17. }
  18. public function newBeforeFlush(){
  19. }
  20. }