Skip to content

Commit 5fd8dba

Browse files
committed
Fixed priorities
1 parent dc9e6ef commit 5fd8dba

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/Bridge/DebugListener.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public function __construct(DebuggableInterface $debuggable, DebugExtractorInter
3030
public static function getSubscribedEvents()
3131
{
3232
return [
33-
ConsoleEvents::COMMAND => ['onStart', 16384],
34-
KernelEvents::REQUEST => ['onStart', 16384],
33+
ConsoleEvents::COMMAND => ['onStart', 8192],
34+
KernelEvents::REQUEST => ['onStart', 8192],
3535
ConsoleEvents::TERMINATE => ['onTerminate'],
3636
KernelEvents::TERMINATE => ['onTerminate'],
3737
];

src/Context/Extractor/EnvContextExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct(CodecRegistry $registry, string $format, string $env
3232
public static function getSubscribedEvents()
3333
{
3434
return [
35-
ConsoleEvents::COMMAND => ['onCommand', 8192],
35+
ConsoleEvents::COMMAND => ['onCommand', 16384],
3636
ConsoleEvents::TERMINATE => ['onTerminate'],
3737
];
3838
}

src/Context/Extractor/HeaderContextExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function __construct(CodecRegistry $registry, string $format, string $hea
3434
public static function getSubscribedEvents()
3535
{
3636
return [
37-
KernelEvents::REQUEST => ['onRequest', 8192],
37+
KernelEvents::REQUEST => ['onRequest', 16384],
3838
KernelEvents::TERMINATE => ['onTerminate'],
3939
];
4040
}

src/Debug/Extractor/CookieDebugExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function getDebug(): string
5050
public static function getSubscribedEvents()
5151
{
5252
return [
53-
KernelEvents::REQUEST => ['onRequest', 8192],
53+
KernelEvents::REQUEST => ['onRequest', 16384],
5454
KernelEvents::TERMINATE => ['onTerminate'],
5555
];
5656
}

src/Debug/Extractor/EnvDebugExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public function __construct(string $envName)
2020
public static function getSubscribedEvents()
2121
{
2222
return [
23-
ConsoleEvents::COMMAND => ['onCommand', 8192],
23+
ConsoleEvents::COMMAND => ['onCommand', 16384],
2424
ConsoleEvents::TERMINATE => ['onTerminate'],
2525
];
2626
}

0 commit comments

Comments
 (0)