Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
42 | 1 | public static function getSubscribedEvents() |
|
43 | { |
||
44 | //Register with the highest priority to reset the client (and so the kernel) before all others things |
||
45 | return [ |
||
46 | 1 | ScenarioTested::BEFORE => ['reset', ListenerPriority::HIGH_PRIORITY], |
|
47 | 1 | ExampleTested::BEFORE => ['reset', ListenerPriority::HIGH_PRIORITY], |
|
48 | 1 | ]; |
|
49 | } |
||
50 | |||
60 |