We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76ed6f4 commit 97b844cCopy full SHA for 97b844c
Extension/ProfilerExtension.php
@@ -12,6 +12,7 @@
12
namespace Symfony\Bridge\Twig\Extension;
13
14
use Symfony\Component\Stopwatch\Stopwatch;
15
+use Symfony\Component\Stopwatch\StopwatchEvent;
16
use Twig\Extension\ProfilerExtension as BaseProfilerExtension;
17
use Twig\Profiler\Profile;
18
@@ -21,6 +22,10 @@
21
22
final class ProfilerExtension extends BaseProfilerExtension
23
{
24
private $stopwatch;
25
+
26
+ /**
27
+ * @var \SplObjectStorage<Profile, StopwatchEvent>
28
+ */
29
private $events;
30
31
public function __construct(Profile $profile, Stopwatch $stopwatch = null)
0 commit comments