summaryrefslogtreecommitdiffstats
path: root/src/Exceptions
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauriciofauth@gmail.com>2019-01-16 18:07:19 -0200
committerMaurício Meneghini Fauth <mauriciofauth@gmail.com>2019-01-16 18:07:19 -0200
commit17da8a34b81442524a8e01fead7b5968fa1cc39d (patch)
treeaf443eb31a13b3c4461a3322e10d376571f6d3b6 /src/Exceptions
parent86c5baebda24c1721fb6881df8671a3c7df60e8b (diff)
downloadsql-parser-17da8a34b81442524a8e01fead7b5968fa1cc39d.zip
sql-parser-17da8a34b81442524a8e01fead7b5968fa1cc39d.tar.gz
sql-parser-17da8a34b81442524a8e01fead7b5968fa1cc39d.tar.bz2
Enable strict mode on PHP files
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
Diffstat (limited to 'src/Exceptions')
-rw-r--r--src/Exceptions/LexerException.php2
-rw-r--r--src/Exceptions/LoaderException.php2
-rw-r--r--src/Exceptions/ParserException.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/Exceptions/LexerException.php b/src/Exceptions/LexerException.php
index 61e88c9..7dd85a4 100644
--- a/src/Exceptions/LexerException.php
+++ b/src/Exceptions/LexerException.php
@@ -1,8 +1,8 @@
<?php
-
/**
* Exception thrown by the lexer.
*/
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Exceptions;
diff --git a/src/Exceptions/LoaderException.php b/src/Exceptions/LoaderException.php
index bfbd4c3..d809876 100644
--- a/src/Exceptions/LoaderException.php
+++ b/src/Exceptions/LoaderException.php
@@ -1,8 +1,8 @@
<?php
-
/**
* Exception thrown by the lexer.
*/
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Exceptions;
diff --git a/src/Exceptions/ParserException.php b/src/Exceptions/ParserException.php
index eb13653..575eeb1 100644
--- a/src/Exceptions/ParserException.php
+++ b/src/Exceptions/ParserException.php
@@ -1,8 +1,8 @@
<?php
-
/**
* Exception thrown by the parser.
*/
+declare(strict_types=1);
namespace PhpMyAdmin\SqlParser\Exceptions;