Skip to content

Commit

Permalink
Fix CS/WS issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Feb 17, 2022
1 parent 05551c1 commit 58ef364
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/StaticAnalysis/ExecutableLinesFindingVisitor.php
Expand Up @@ -98,11 +98,9 @@ private function savePropertyLines(Node $node): void
*/
private function getLines(Node $node): array
{
if (
$node instanceof PropertyFetch ||
if ($node instanceof PropertyFetch ||
$node instanceof NullsafePropertyFetch ||
$node instanceof StaticPropertyFetch
) {
$node instanceof StaticPropertyFetch) {
return [$node->getEndLine()];
}

Expand Down

0 comments on commit 58ef364

Please sign in to comment.