vendor/sylius/sylius/src/Sylius/Bundle/UiBundle/DataCollector/TraceableTemplateEventRenderer.php line 27

  1. <?php
  2. /*
  3.  * This file is part of the Sylius package.
  4.  *
  5.  * (c) Paweł Jędrzejewski
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace Sylius\Bundle\UiBundle\DataCollector;
  12. use Sylius\Bundle\UiBundle\Renderer\TemplateEventRendererInterface;
  13. /** @internal */
  14. final class TraceableTemplateEventRenderer implements TemplateEventRendererInterface
  15. {
  16.     public function __construct(
  17.         private TemplateEventRendererInterface $templateEventRenderer,
  18.         private TemplateBlockRenderingHistory $templateBlockRenderingHistory,
  19.     ) {
  20.     }
  21.     public function render(array $eventNames, array $context = []): string
  22.     {
  23.         $this->templateBlockRenderingHistory->startRenderingEvent($eventNames$context);
  24.         $renderedEvent $this->templateEventRenderer->render($eventNames$context);
  25.         $this->templateBlockRenderingHistory->stopRenderingEvent($eventNames$context);
  26.         return $renderedEvent;
  27.     }
  28. }