Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
richardDobron authored and github-actions[bot] committed Jun 24, 2023
1 parent 44bde9d commit 3e5f357
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fbt/Services/CollectFbtsService.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ protected function matchFbtCalls(Node $node): bool
return ($node instanceof FuncCall
&& $node->name instanceof Name
&& $node->name->toString() === 'fbt')
|| ($node instanceof StaticCall
|| (
$node instanceof StaticCall
&& $node->class instanceof Name
&& $node->name instanceof Identifier
&& in_array($node->class->toString(), ['fbt', 'fbt\\fbt'])
Expand Down

0 comments on commit 3e5f357

Please sign in to comment.