Skip to content

Commit 34d3728

Browse files
committed
Merge branch '2.0.x' into 1.0.x
2 parents 6b5b394 + 5fd8dba commit 34d3728

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
@@ -28,8 +28,8 @@ public function __construct(DebuggableInterface $debuggable, DebugExtractorInter
2828
public static function getSubscribedEvents()
2929
{
3030
return [
31-
ConsoleEvents::COMMAND => ['onStart', 16384],
32-
KernelEvents::REQUEST => ['onStart', 16384],
31+
ConsoleEvents::COMMAND => ['onStart', 8192],
32+
KernelEvents::REQUEST => ['onStart', 8192],
3333
ConsoleEvents::TERMINATE => ['onTerminate'],
3434
KernelEvents::TERMINATE => ['onTerminate'],
3535
];

src/Context/Extractor/EnvContextExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function extract()
4747
public static function getSubscribedEvents()
4848
{
4949
return [
50-
ConsoleEvents::COMMAND => ['onCommand', 8192],
50+
ConsoleEvents::COMMAND => ['onCommand', 16384],
5151
ConsoleEvents::TERMINATE => ['onTerminate'],
5252
];
5353
}

src/Context/Extractor/HeaderContextExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function extract()
4747
public static function getSubscribedEvents()
4848
{
4949
return [
50-
KernelEvents::REQUEST => ['onRequest', 8192],
50+
KernelEvents::REQUEST => ['onRequest', 16384],
5151
KernelEvents::TERMINATE => ['onTerminate'],
5252
];
5353
}

src/Debug/Extractor/CookieDebugExtractor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function getDebug()
5656
public static function getSubscribedEvents()
5757
{
5858
return [
59-
KernelEvents::REQUEST => ['onRequest', 8192],
59+
KernelEvents::REQUEST => ['onRequest', 16384],
6060
KernelEvents::TERMINATE => ['onTerminate'],
6161
];
6262
}

src/Debug/Extractor/EnvDebugExtractor.php

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

0 commit comments

Comments
 (0)