1 | <?php declare(strict_types=1); |
||
16 | final class ProfileEvent extends Event |
||
17 | { |
||
18 | const EVENT = 'TwigView.TwigView.profile'; |
||
19 | |||
20 | /** |
||
21 | * @param \Twig\Profiler\Profile $profile |
||
22 | * @return static |
||
23 | */ |
||
24 | public static function create(Profile $profile): ProfileEvent |
||
28 | |||
29 | /** |
||
30 | * @return \Twig\Profiler\Profile |
||
31 | */ |
||
32 | public function getLoader(): Profile |
||
36 | } |
||
37 |