vendor/sonata-project/core-bundle/src/Twig/Node/DeprecatedTemplateNode.php line 36

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4.  * This file is part of the Sonata Project package.
  5.  *
  6.  * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  7.  *
  8.  * For the full copyright and license information, please view the LICENSE
  9.  * file that was distributed with this source code.
  10.  */
  11. namespace Sonata\Twig\Node;
  12. use Twig\Compiler;
  13. use Twig\Node\Expression\AbstractExpression;
  14. use Twig\Node\Node;
  15. /**
  16.  * @author Marko Kunic <kunicmarko20@gmail.com>
  17.  */
  18. class DeprecatedTemplateNode extends Node
  19. {
  20.     public function __construct(AbstractExpression $newTemplate$line$tag null)
  21.     {
  22.         parent::__construct(['newTemplate' => $newTemplate], [], $line$tag);
  23.     }
  24.     public function compile(Compiler $compiler)
  25.     {
  26.         @trigger_error(sprintf(
  27.             'The "%s" template is deprecated. Use "%s" instead.',
  28.             $this->getTemplateName(),
  29.             $this->getNode('newTemplate')->getAttribute('value')
  30.         ), E_USER_DEPRECATED);
  31.     }
  32. }
  33. class_exists(\Sonata\CoreBundle\Twig\Node\DeprecatedTemplateNode::class);