Skip to content

Commit

Permalink
Fix comparison changed in the CS commit
Browse files Browse the repository at this point in the history
It was broken in 3a9494b
  • Loading branch information
mhujer authored and sebastianbergmann committed Jan 27, 2018
1 parent 65fa743 commit 16d3206
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Util/Configuration.php
Expand Up @@ -346,7 +346,7 @@ public function getListenerConfiguration(): array
continue;
}

if (!$node->tagName === 'arguments') {
if ($node->tagName !== 'arguments') {
continue;
}

Expand Down

0 comments on commit 16d3206

Please sign in to comment.