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/ParserException.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/ParserException.php')
-rw-r--r-- | src/Exceptions/ParserException.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/Exceptions/ParserException.php b/src/Exceptions/ParserException.php index 7332674..06a6033 100644 --- a/src/Exceptions/ParserException.php +++ b/src/Exceptions/ParserException.php @@ -6,6 +6,12 @@ use SqlParser\Token; /** * Exception thrown by the parser. + * + * @category Exceptions + * @package SqlParser + * @subpackage Exceptions + * @author Dan Ungureanu <udan1107@gmail.com> + * @license http://opensource.org/licenses/GPL-2.0 GNU Public License */ class ParserException extends \Exception { @@ -20,9 +26,9 @@ class ParserException extends \Exception /** * 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. + * @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. */ public function __construct($msg = '', Token $token = null, $code = 0) { |