Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
[ci skip] [skip ci]
  • Loading branch information
StyleCIBot committed Feb 27, 2022
1 parent 792c794 commit b66447e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Checks/FacadeDocblocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function check($tokens, $absFilePath, SplFileInfo $classFilePath,
return;
}

if (!class_exists($accessor) && !interface_exists($accessor)) {
if (! class_exists($accessor) && ! interface_exists($accessor)) {
$accessor = get_class($class::getFacadeRoot());
}
self::AddDocBlocks($accessor, $class, $tokens, $classFilePath);
Expand Down

0 comments on commit b66447e

Please sign in to comment.