Skip to content

Commit b66447e

Browse files
committed
Apply fixes from StyleCI
[ci skip] [skip ci]
1 parent 792c794 commit b66447e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Checks/FacadeDocblocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public static function check($tokens, $absFilePath, SplFileInfo $classFilePath,
3232
return;
3333
}
3434

35-
if (!class_exists($accessor) && !interface_exists($accessor)) {
35+
if (! class_exists($accessor) && ! interface_exists($accessor)) {
3636
$accessor = get_class($class::getFacadeRoot());
3737
}
3838
self::AddDocBlocks($accessor, $class, $tokens, $classFilePath);

0 commit comments

Comments
 (0)