vendor/symfony/framework-bundle/CacheWarmer/TemplateFinderInterface.php line 14

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Bundle\FrameworkBundle\CacheWarmer;
  11. @trigger_error('The '.TemplateFinderInterface::class.' interface is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  12. /**
  13.  * Interface for finding all the templates.
  14.  *
  15.  * @author Victor Berchet <victor@suumit.com>
  16.  *
  17.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  18.  */
  19. interface TemplateFinderInterface
  20. {
  21.     /**
  22.      * Find all the templates.
  23.      *
  24.      * @return array An array of templates of type TemplateReferenceInterface
  25.      */
  26.     public function findAllTemplates();
  27. }