vendor/symfony/framework-bundle/Templating/TimedPhpEngine.php line 28

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 '.TimedPhpEngine::class.' class is deprecated since version 4.3 and will be removed in 5.0; use Twig instead.'E_USER_DEPRECATED);
  12. use Psr\Container\ContainerInterface;
  13. use Symfony\Component\Stopwatch\Stopwatch;
  14. use Symfony\Component\Templating\Loader\LoaderInterface;
  15. use Symfony\Component\Templating\TemplateNameParserInterface;
  16. /**
  17.  * Times the time spent to render a template.
  18.  *
  19.  * @author Fabien Potencier <fabien@symfony.com>
  20.  *
  21.  * @deprecated since version 4.3, to be removed in 5.0; use Twig instead.
  22.  */
  23. class TimedPhpEngine extends PhpEngine
  24. {
  25.     protected $stopwatch;
  26.     public function __construct(TemplateNameParserInterface $parserContainerInterface $containerLoaderInterface $loaderStopwatch $stopwatchGlobalVariables $globals null)
  27.     {
  28.         parent::__construct($parser$container$loader$globals);
  29.         $this->stopwatch $stopwatch;
  30.     }
  31.     /**
  32.      * {@inheritdoc}
  33.      */
  34.     public function render($name, array $parameters = [])
  35.     {
  36.         $e $this->stopwatch->start(sprintf('template.php (%s)'$name), 'template');
  37.         $ret parent::render($name$parameters);
  38.         $e->stop();
  39.         return $ret;
  40.     }
  41. }