mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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:
parent
0ef69e6aa1
commit
2f3373fb95
5 changed files with 5 additions and 5 deletions
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue