diff options
Diffstat (limited to 'src/Fragments/CallKeyword.php')
-rw-r--r-- | src/Fragments/CallKeyword.php | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/Fragments/CallKeyword.php b/src/Fragments/CallKeyword.php index 6147cf4..db11120 100644 --- a/src/Fragments/CallKeyword.php +++ b/src/Fragments/CallKeyword.php @@ -3,13 +3,18 @@ namespace SqlParser\Fragments; use SqlParser\Fragment; -use SqlParser\Lexer; use SqlParser\Parser; use SqlParser\Token; use SqlParser\TokensList; /** * Parses a function call. + * + * @category Keywords + * @package SqlParser + * @subpackage Fragments + * @author Dan Ungureanu <udan1107@gmail.com> + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License */ class CallKeyword extends Fragment { @@ -29,9 +34,9 @@ class CallKeyword extends Fragment public $parameters = array(); /** - * @param Parser $parser The parser that serves as context. - * @param TokensList $list The list of tokens that are being parsed. - * @param array $options Parameters for parsing. + * @param Parser $parser The parser that serves as context. + * @param TokensList $list The list of tokens that are being parsed. + * @param array $options Parameters for parsing. * * @return CallKeyword */ @@ -53,7 +58,11 @@ class CallKeyword extends Fragment $state = 0; for (; $list->idx < $list->count; ++$list->idx) { - /** @var Token Token parsed at this moment. */ + + /** + * Token parsed at this moment. + * @var Token + */ $token = $list->tokens[$list->idx]; // End of statement. |