1<?php
2
3use Twig\Profiler\NodeVisitor\ProfilerNodeVisitor;
4
5class_exists('Twig\Profiler\NodeVisitor\ProfilerNodeVisitor');
6
7@trigger_error('Using the "Twig_Profiler_NodeVisitor_Profiler" class is deprecated since Twig version 2.7, use "Twig\Profiler\NodeVisitor\ProfilerNodeVisitor" instead.', \E_USER_DEPRECATED);
8
9if (false) {
10    /** @deprecated since Twig 2.7, use "Twig\Profiler\NodeVisitor\ProfilerNodeVisitor" instead */
11    class Twig_Profiler_NodeVisitor_Profiler extends ProfilerNodeVisitor
12    {
13    }
14}
15