Skip to content

Commit

Permalink
ParserAbstract: add missing '*' to the phpdoc
Browse files Browse the repository at this point in the history
Otherwise, it's somewhat incompatible with the phpdoc definition.
  • Loading branch information
quasilyte authored and nikic committed Apr 25, 2021
1 parent 2a4bb7e commit f767b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PhpParser/ParserAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ abstract class ParserAbstract implements Parser

/** @var int[] Map of states to a displacement into the $action table. The corresponding action for this
* state/symbol pair is $action[$actionBase[$state] + $symbol]. If $actionBase[$state] is 0, the
action is defaulted, i.e. $actionDefault[$state] should be used instead. */
* action is defaulted, i.e. $actionDefault[$state] should be used instead. */
protected $actionBase;
/** @var int[] Table of actions. Indexed according to $actionBase comment. */
protected $action;
Expand Down

0 comments on commit f767b9f

Please sign in to comment.