vendor/symfony/framework-bundle/Templating/EngineInterface.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\Templating;
  11. @trigger_error('The '.EngineInterface::class.' interface is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.', \E_USER_DEPRECATED);
  12. use Symfony\Component\HttpFoundation\Response;
  13. use Symfony\Component\Templating\EngineInterface as BaseEngineInterface;
  14. /**
  15.  * EngineInterface is the interface each engine must implement.
  16.  *
  17.  * @author Fabien Potencier <fabien@symfony.com>
  18.  *
  19.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  20.  */
  21. interface EngineInterface extends BaseEngineInterface
  22. {
  23.     /**
  24.      * Renders a view and returns a Response.
  25.      *
  26.      * @param string $view       The view name
  27.      * @param array  $parameters An array of parameters to pass to the view
  28.      *
  29.      * @return Response A Response instance
  30.      *
  31.      * @throws \RuntimeException if the template cannot be rendered
  32.      */
  33.     public function renderResponse($view, array $parameters = [], Response $response null);
  34. }