diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-08-15 23:39:11 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-08-15 23:39:11 +0300 |
commit | 7d3b89b73e4ca763c02947163ec592eb03c4a527 (patch) | |
tree | d251f1f3f5951495ab305f1a995b3a5e201597a7 /src/Components/FunctionCall.php | |
parent | 724210044ef2606ff383dbc142ad46bf95f1f949 (diff) | |
download | sql-parser-7d3b89b73e4ca763c02947163ec592eb03c4a527.zip sql-parser-7d3b89b73e4ca763c02947163ec592eb03c4a527.tar.gz sql-parser-7d3b89b73e4ca763c02947163ec592eb03c4a527.tar.bz2 |
Consistent PHPDoc style.
Diffstat (limited to 'src/Components/FunctionCall.php')
-rw-r--r-- | src/Components/FunctionCall.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Components/FunctionCall.php b/src/Components/FunctionCall.php index b86eeb8..43eb082 100644 --- a/src/Components/FunctionCall.php +++ b/src/Components/FunctionCall.php @@ -73,15 +73,17 @@ class FunctionCall extends Component * * 0 ----------------------[ name ]-----------------------> 1 * - * 1 --------------------[ parameters ]-------------------> -1 + * 1 --------------------[ parameters ]-------------------> (END) * - * @var int + * @var int $state */ $state = 0; for (; $list->idx < $list->count; ++$list->idx) { + /** * Token parsed at this moment. + * * @var Token $token */ $token = $list->tokens[$list->idx]; |