summaryrefslogtreecommitdiffstats
path: root/src/Exceptions
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2019-12-14 12:43:05 -0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2019-12-14 12:43:05 -0300
commit53b6ab87749357700f7129d0400fee3afc9ec50d (patch)
tree6325a11c1513e6099d1bc07eabf0c2f1e9d49aa1 /src/Exceptions
parent53441d712bc5e8d0f5f08144fd0ec4dfd5f8b04c (diff)
downloadsql-parser-53b6ab87749357700f7129d0400fee3afc9ec50d.zip
sql-parser-53b6ab87749357700f7129d0400fee3afc9ec50d.tar.gz
sql-parser-53b6ab87749357700f7129d0400fee3afc9ec50d.tar.bz2
Remove useless comments and annotations
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'src/Exceptions')
-rw-r--r--src/Exceptions/LexerException.php6
-rw-r--r--src/Exceptions/LoaderException.php6
-rw-r--r--src/Exceptions/ParserException.php6
3 files changed, 0 insertions, 18 deletions
diff --git a/src/Exceptions/LexerException.php b/src/Exceptions/LexerException.php
index 857d09b..9731575 100644
--- a/src/Exceptions/LexerException.php
+++ b/src/Exceptions/LexerException.php
@@ -10,10 +10,6 @@ use Exception;
/**
* Exception thrown by the lexer.
- *
- * @category Exceptions
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class LexerException extends Exception
{
@@ -32,8 +28,6 @@ class LexerException extends Exception
public $pos;
/**
- * Constructor.
- *
* @param string $msg the message of this exception
* @param string $ch the character that produced this exception
* @param int $pos the position of the character
diff --git a/src/Exceptions/LoaderException.php b/src/Exceptions/LoaderException.php
index 41d04ff..54b9234 100644
--- a/src/Exceptions/LoaderException.php
+++ b/src/Exceptions/LoaderException.php
@@ -10,10 +10,6 @@ use Exception;
/**
* Exception thrown by the lexer.
- *
- * @category Exceptions
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class LoaderException extends Exception
{
@@ -25,8 +21,6 @@ class LoaderException extends Exception
public $name;
/**
- * Constructor.
- *
* @param string $msg the message of this exception
* @param string $name the character that produced this exception
* @param int $code the code of this error
diff --git a/src/Exceptions/ParserException.php b/src/Exceptions/ParserException.php
index 4cf6977..ae63f07 100644
--- a/src/Exceptions/ParserException.php
+++ b/src/Exceptions/ParserException.php
@@ -11,10 +11,6 @@ use PhpMyAdmin\SqlParser\Token;
/**
* Exception thrown by the parser.
- *
- * @category Exceptions
- *
- * @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
*/
class ParserException extends Exception
{
@@ -26,8 +22,6 @@ class ParserException extends Exception
public $token;
/**
- * Constructor.
- *
* @param string $msg the message of this exception
* @param Token $token the token that produced this exception
* @param int $code the code of this error