diff options
author | Dan Ungureanu <udan1107@gmail.com> | 2015-06-21 17:14:57 +0300 |
---|---|---|
committer | Dan Ungureanu <udan1107@gmail.com> | 2015-06-22 01:13:59 +0300 |
commit | 6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207 (patch) | |
tree | 7b339ce9221748d3f10a2be6ad962e03a64cc0bc /src/Exceptions/LexerException.php | |
parent | b14a35e8ad1a1e63d4b60c4fb6d86bb801600c9e (diff) | |
download | sql-parser-6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207.zip sql-parser-6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207.tar.gz sql-parser-6691a219e8a10c5c06c2fc7eed8bc0f8ff0d5207.tar.bz2 |
Fixed coding style.
Diffstat (limited to 'src/Exceptions/LexerException.php')
-rw-r--r-- | src/Exceptions/LexerException.php | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/Exceptions/LexerException.php b/src/Exceptions/LexerException.php index 306c8b9..53327ed 100644 --- a/src/Exceptions/LexerException.php +++ b/src/Exceptions/LexerException.php @@ -6,6 +6,12 @@ use SqlParser\Token; /** * Exception thrown by the lexer. + * + * @category Exceptions + * @package SqlParser + * @subpackage Exceptions + * @author Dan Ungureanu <udan1107@gmail.com> + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License */ class LexerException extends \Exception { @@ -27,10 +33,10 @@ class LexerException extends \Exception /** * 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. - * @param int $code The code of this error. + * @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. + * @param int $code The code of this error. */ public function __construct($msg = '', $ch = '', $pos = 0, $code = 0) { |