Skip to content

Commit 82dcd54

Browse files
committed
Bug: iLineNo and not getLine()
1 parent 83866af commit 82dcd54

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/Sabberworm/CSS/Parsing/OutputException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ public function __construct($sMessage, $iLineNo = 0) {
1616
}
1717

1818
public function getLineNo() {
19-
return $this->getLine();
19+
return $this->iLineNo;
2020
}
2121
}

lib/Sabberworm/CSS/Parsing/UnexpectedTokenException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ public function __construct($sExpected, $sFound, $sMatchType = 'literal', $iLine
3636
}
3737

3838
public function getLineNo() {
39-
return $this->getLine();
39+
return $this->iLineNo;
4040
}
4141
}

0 commit comments

Comments
 (0)