diff options
Diffstat (limited to 'src/Parser.php')
-rw-r--r-- | src/Parser.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Parser.php b/src/Parser.php index 167e912..059faa5 100644 --- a/src/Parser.php +++ b/src/Parser.php @@ -119,8 +119,8 @@ class Parser /** * Constructor. * - * @param mixed $list - * @param bool $strict + * @param mixed $list The list of tokens to be parsed. + * @param bool $strict Whether strict mode should be enabled or not. */ public function __construct($list = null, $strict = false) { @@ -181,9 +181,9 @@ class Parser /** * Creates a new error log. * - * @param string $str - * @param Token $token - * @param int $code + * @param string $msg The error message. + * @param Token $token The token that produced the error. + * @param int $code The code of the error. */ public function error($str = '', Token $token = null, $code = 0) { |