vendor/symfony/twig-bundle/TwigEngine.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\TwigBundle;
  11. @trigger_error('The '.TwigEngine::class.' class is deprecated since version 4.3 and will be removed in 5.0; use \Twig\Environment instead.', \E_USER_DEPRECATED);
  12. use Symfony\Bridge\Twig\TwigEngine as BaseEngine;
  13. use Symfony\Bundle\FrameworkBundle\Templating\EngineInterface;
  14. use Symfony\Component\Config\FileLocatorInterface;
  15. use Symfony\Component\HttpFoundation\Response;
  16. use Symfony\Component\Templating\TemplateNameParserInterface;
  17. use Twig\Environment;
  18. use Twig\Error\Error;
  19. /**
  20.  * This engine renders Twig templates.
  21.  *
  22.  * @author Fabien Potencier <fabien@symfony.com>
  23.  *
  24.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  25.  */
  26. class TwigEngine extends BaseEngine implements EngineInterface
  27. {
  28.     protected $locator;
  29.     public function __construct(Environment $environmentTemplateNameParserInterface $parserFileLocatorInterface $locator)
  30.     {
  31.         parent::__construct($environment$parser);
  32.         $this->locator $locator;
  33.     }
  34.     /**
  35.      * {@inheritdoc}
  36.      *
  37.      * @throws Error if something went wrong like a thrown exception while rendering the template
  38.      */
  39.     public function renderResponse($view, array $parameters = [], Response $response null)
  40.     {
  41.         if (null === $response) {
  42.             $response = new Response();
  43.         }
  44.         $response->setContent($this->render($view$parameters));
  45.         return $response;
  46.     }
  47. }