Fix class names and types

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@343205 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Anatol Belski 2017-10-08 09:34:14 +00:00
parent 0ef69e6aa1
commit 2f3373fb95
5 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>Parle\Parser::consume</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
<methodparam><type>mixed</type><parameter>lexer</parameter></methodparam>
<methodparam><type>Parle\Lexer</type><parameter>lexer</parameter></methodparam>
</methodsynopsis>
<para>
Consume the data for parsing.

View file

@ -12,7 +12,7 @@
<methodsynopsis>
<modifier>public</modifier> <type>bool</type><methodname>Parle\Parser::validate</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
<methodparam><type>mixed</type><parameter>lexer</parameter></methodparam>
<methodparam><type>Parle\Lexer</type><parameter>lexer</parameter></methodparam>
</methodsynopsis>
<para>
Validate an input string. The string is parsed internally, thus this method is useful for the quick input validation.

View file

@ -49,7 +49,7 @@
<term><parameter>id</parameter></term>
<listitem>
<para>
Token id. If the lexer instance is meant to be used standalone, this can be an arbitrary number. If the lexer instance is going to be passed to the parser, it has to be an id returned by <methodname>Parle\Parser::tokenid</methodname>.
Token id. If the lexer instance is meant to be used standalone, this can be an arbitrary number. If the lexer instance is going to be passed to the parser, it has to be an id returned by <methodname>Parle\RParser::tokenid</methodname>.
</para>
</listitem>
</varlistentry>

View file

@ -12,7 +12,7 @@
<methodsynopsis>
<modifier>public</modifier> <type>void</type><methodname>Parle\RParser::consume</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
<methodparam><type>mixed</type><parameter>rlexer</parameter></methodparam>
<methodparam><type>Parle\RLexer</type><parameter>rlexer</parameter></methodparam>
</methodsynopsis>
<para>
Consume the data for parsing.

View file

@ -12,7 +12,7 @@
<methodsynopsis>
<modifier>public</modifier> <type>bool</type><methodname>Parle\RParser::validate</methodname>
<methodparam><type>string</type><parameter>data</parameter></methodparam>
<methodparam><type>mixed</type><parameter>lexer</parameter></methodparam>
<methodparam><type>Parle\RLexer</type><parameter>lexer</parameter></methodparam>
</methodsynopsis>
<para>
Validate an input string. The string is parsed internally, thus this method is useful for the quick input validation.