Skip to content

Commit 8275fe7

Browse files
committed
Added missing return in ClassRemoved::getLine.
1 parent 95f7bfc commit 8275fe7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPSemVerChecker/Operation/ClassRemoved.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function getLocation()
4343

4444
public function getLine()
4545
{
46-
$this->classBefore->getLine();
46+
return $this->classBefore->getLine();
4747
}
4848

4949
/**

0 commit comments

Comments
 (0)