1
0
mirror of https://github.com/halaxa/json-machine.git synced 2025-03-15 17:09:39 +01:00

Fixed doc comments

This commit is contained in:
Filip Halaxa 2022-01-10 16:13:52 +01:00
parent 904ee8ed1f
commit 13237258f3
2 changed files with 6 additions and 4 deletions

View File

@ -119,7 +119,9 @@ class DebugLexer implements \IteratorAggregate, PositionAware
}
/**
* @return int the line number of the lexeme currently being processed (index starts at one)
* Returns the line number of the lexeme currently being processed (index starts at one).
*
* @return int
*/
public function getLine()
{
@ -127,7 +129,9 @@ class DebugLexer implements \IteratorAggregate, PositionAware
}
/**
* @return int the, currently being processed, lexeme's position within the line (index starts at one)
* The position of currently being processed lexeme within the line (index starts at one).
*
* @return int
*/
public function getColumn()
{

View File

@ -8,8 +8,6 @@ class DecodingError
private $errorMessage;
/**
* DecodingError constructor.
*
* @param string $malformedJson
* @param string $errorMessage
*/