diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-06-26 14:25:19 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-06-26 14:25:19 +0300 |
commit | 20b6ec1a64c4ab74778a1049baba65de221835cb (patch) | |
tree | e22f0a63743fd7941c1549143aecf28c1d76e7e1 /src/Lexer.php | |
parent | 13a0881dc9591b3fc3eb2386eb6fde0bfb194ea6 (diff) | |
download | sql-parser-20b6ec1a64c4ab74778a1049baba65de221835cb.zip sql-parser-20b6ec1a64c4ab74778a1049baba65de221835cb.tar.gz sql-parser-20b6ec1a64c4ab74778a1049baba65de221835cb.tar.bz2 |
Improved documentation.
Diffstat (limited to 'src/Lexer.php')
-rw-r--r-- | src/Lexer.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Lexer.php b/src/Lexer.php index 33e7337..d681425 100644 --- a/src/Lexer.php +++ b/src/Lexer.php @@ -1,5 +1,14 @@ <?php +/** + * Defines the lexer of the library. + * + * This is one of the most important components, along with the parser. + * + * Depends on context to extract lexemes. + * + * @package SqlParser + */ namespace SqlParser; use SqlParser\Exceptions\LexerException; |