Skip to content

Commit 16a62b8

Browse files
committed
Fix CS
1 parent dfcc5d7 commit 16a62b8

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)