8000 Fix CS · symfony/symfony@86195d2 · GitHub
[go: up one dir, main page]

Skip to content

Commit 86195d2

Browse files
simshaunfabpot
authored andcommitted
Fix CS
1 parent e8e6595 commit 86195d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/Monolog/Handler/FingersCrossed/HttpCodeActivationStrategy.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function isHandlerActivated(array $record)
4444
&& ($request = $this->requestStack->getMasterRequest())
4545
) {
4646
foreach ($this->exclusions as $exclusion) {
47-
if ($exclusion['code'] !== $record['context']['exception']->getStatusCode()) {
47+
if ($record['context']['exception']->getStatusCode() !== $exclusion['code']) {
4848
continue;
4949
}
5050

0 commit comments

Comments
 (0)
0