Skip to content

Commit 58ef364

Browse files
Fix CS/WS issue
1 parent 05551c1 commit 58ef364

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/StaticAnalysis/ExecutableLinesFindingVisitor.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,9 @@ private function savePropertyLines(Node $node): void
9898
*/
9999
private function getLines(Node $node): array
100100
{
101-
if (
102-
$node instanceof PropertyFetch ||
101+
if ($node instanceof PropertyFetch ||
103102
$node instanceof NullsafePropertyFetch ||
104-
$node instanceof StaticPropertyFetch
105-
) {
103+
$node instanceof StaticPropertyFetch) {
106104
return [$node->getEndLine()];
107105
}
108106

0 commit comments

Comments
 (0)