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.

34 lines
828B

  1. <?php
  2. namespace Lc\CaracoleBundle\Twig;
  3. use Lc\CaracoleBundle\Form\Merchant\SwitchMerchantButtonAdminFormType;
  4. use Lc\CaracoleBundle\Form\Merchant\SwitchMerchantFormType;
  5. use Lc\CaracoleBundle\Form\Section\SwitchSectionFormType;
  6. use Lc\CaracoleBundle\Repository\Merchant\MerchantRepositoryQuery;
  7. use Lc\CaracoleBundle\Repository\Section\SectionRepository;
  8. use Lc\CaracoleBundle\Repository\Section\SectionRepositoryInterface;
  9. use Symfony\Component\Form\FormFactoryInterface;
  10. use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
  11. use Twig\Extension\AbstractExtension;
  12. use Twig\TwigFunction;
  13. class TwigExtension extends AbstractExtension
  14. {
  15. public function __construct() {
  16. }
  17. public function getFilters()
  18. {
  19. return [];
  20. }
  21. public function getFunctions()
  22. {
  23. return [];
  24. }
  25. }