Skip to content

Commit 611cbb8

Browse files
committed
Fix code sniff violations
1 parent 620720a commit 611cbb8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/UnifiedSpecTests/EventObserver.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
use PHPUnit\Framework\Assert;
1313
use stdClass;
1414

15-
use function array_fill_keys;
1615
use function array_reverse;
1716
use function count;
1817
use function current;
@@ -291,7 +290,7 @@ private function handleEvent($event): void
291290
return;
292291
}
293292

294-
if (!$this->observeSensitiveCommands && $this->isSensistiveCommand($event)) {
293+
if (! $this->observeSensitiveCommands && $this->isSensistiveCommand($event)) {
295294
return;
296295
}
297296

0 commit comments

Comments
 (0)