Skip to content

Commit 152f691

Browse files
committed
Fix bug in ResultLine returning incorrect boolean property
1 parent f25c8d2 commit 152f691

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ResultLine.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,6 @@ public function wasReached(): bool
4141

4242
public function isSupported(): bool
4343
{
44-
return $this->wasReached;
44+
return $this->isSupported;
4545
}
4646
}

0 commit comments

Comments
 (0)