summaryrefslogtreecommitdiffstats
path: root/src/Lexer.php
diff options
context:
space:
mode:
authorDan Ungureanu <udan1107@gmail.com>2015-06-26 14:25:19 +0300
committerDan Ungureanu <udan1107@gmail.com>2015-06-26 14:25:19 +0300
commit20b6ec1a64c4ab74778a1049baba65de221835cb (patch)
treee22f0a63743fd7941c1549143aecf28c1d76e7e1 /src/Lexer.php
parent13a0881dc9591b3fc3eb2386eb6fde0bfb194ea6 (diff)
downloadsql-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.php9
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;