diff options
Diffstat (limited to 'src/Context.php')
-rw-r--r-- | src/Context.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/Context.php b/src/Context.php index cbe666d..699d800 100644 --- a/src/Context.php +++ b/src/Context.php @@ -1,9 +1,17 @@ <?php +/** + * Defines a context class that is later extended to define other contexts. + * + * A context is a collection of keywords, operators and functions used for + * parsing. + * + * @package SqlParser + */ namespace SqlParser; /** - * Default MySQL context. + * Holds the configuration of the context that is currently used. * * @category Contexts * @package SqlParser |