summaryrefslogtreecommitdiffstats
path: root/src/Utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/Utils')
-rw-r--r--src/Utils/BufferedQuery.php6
-rw-r--r--src/Utils/CLI.php4
-rw-r--r--src/Utils/Error.php4
-rw-r--r--src/Utils/Formatter.php6
-rw-r--r--src/Utils/Misc.php4
-rw-r--r--src/Utils/Query.php4
-rw-r--r--src/Utils/Routine.php4
-rw-r--r--src/Utils/Table.php4
-rw-r--r--src/Utils/Tokens.php4
9 files changed, 0 insertions, 40 deletions
diff --git a/src/Utils/BufferedQuery.php b/src/Utils/BufferedQuery.php
index c2dd074..e2f269a 100644
--- a/src/Utils/BufferedQuery.php
+++ b/src/Utils/BufferedQuery.php
@@ -14,10 +14,6 @@ use PhpMyAdmin\SqlParser\Context;
* Implements a specialized lexer used to extract statements from large inputs
* that are being buffered. After each statement has been extracted, a lexer or
* a parser may be used.
- *
- * @category Lexer
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class BufferedQuery
{
@@ -80,8 +76,6 @@ class BufferedQuery
public $current = '';
/**
- * Constructor.
- *
* @param string $query the query to be parsed
* @param array $options the options of this parser
*/
diff --git a/src/Utils/CLI.php b/src/Utils/CLI.php
index cd27908..240c9dd 100644
--- a/src/Utils/CLI.php
+++ b/src/Utils/CLI.php
@@ -12,10 +12,6 @@ use PhpMyAdmin\SqlParser\Parser;
/**
* CLI interface.
- *
- * @category Exceptions
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class CLI
{
diff --git a/src/Utils/Error.php b/src/Utils/Error.php
index d0f82ed..0f17dc8 100644
--- a/src/Utils/Error.php
+++ b/src/Utils/Error.php
@@ -11,10 +11,6 @@ use PhpMyAdmin\SqlParser\Parser;
/**
* Error related utilities.
- *
- * @category Exceptions
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Error
{
diff --git a/src/Utils/Formatter.php b/src/Utils/Formatter.php
index f4d9576..a357f00 100644
--- a/src/Utils/Formatter.php
+++ b/src/Utils/Formatter.php
@@ -14,10 +14,6 @@ use PhpMyAdmin\SqlParser\TokensList;
/**
* Utilities that are used for formatting queries.
- *
- * @category Misc
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Formatter
{
@@ -70,8 +66,6 @@ class Formatter
];
/**
- * Constructor.
- *
* @param array $options the formatting options
*/
public function __construct(array $options = [])
diff --git a/src/Utils/Misc.php b/src/Utils/Misc.php
index 1d12368..6fcc831 100644
--- a/src/Utils/Misc.php
+++ b/src/Utils/Misc.php
@@ -11,10 +11,6 @@ use PhpMyAdmin\SqlParser\Statements\SelectStatement;
/**
* Miscellaneous utilities.
- *
- * @category Misc
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Misc
{
diff --git a/src/Utils/Query.php b/src/Utils/Query.php
index e22e7f8..837e8f7 100644
--- a/src/Utils/Query.php
+++ b/src/Utils/Query.php
@@ -35,10 +35,6 @@ use PhpMyAdmin\SqlParser\TokensList;
/**
* Statement utilities.
- *
- * @category Statement
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Query
{
diff --git a/src/Utils/Routine.php b/src/Utils/Routine.php
index 9842ff1..7c024c5 100644
--- a/src/Utils/Routine.php
+++ b/src/Utils/Routine.php
@@ -14,10 +14,6 @@ use PhpMyAdmin\SqlParser\Statements\CreateStatement;
/**
* Routine utilities.
- *
- * @category Routines
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Routine
{
diff --git a/src/Utils/Table.php b/src/Utils/Table.php
index 140ed2a..168061d 100644
--- a/src/Utils/Table.php
+++ b/src/Utils/Table.php
@@ -10,10 +10,6 @@ use PhpMyAdmin\SqlParser\Statements\CreateStatement;
/**
* Table utilities.
- *
- * @category Statement
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Table
{
diff --git a/src/Utils/Tokens.php b/src/Utils/Tokens.php
index b7f5935..e823114 100644
--- a/src/Utils/Tokens.php
+++ b/src/Utils/Tokens.php
@@ -12,10 +12,6 @@ use PhpMyAdmin\SqlParser\TokensList;
/**
* Token utilities.
- *
- * @category Token
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class Tokens
{