diff options
author | Maurício Meneghini Fauth <mauriciofauth@gmail.com> | 2019-01-16 18:07:19 -0200 |
---|---|---|
committer | Maurício Meneghini Fauth <mauriciofauth@gmail.com> | 2019-01-16 18:07:19 -0200 |
commit | 17da8a34b81442524a8e01fead7b5968fa1cc39d (patch) | |
tree | af443eb31a13b3c4461a3322e10d376571f6d3b6 /tests/Lexer | |
parent | 86c5baebda24c1721fb6881df8671a3c7df60e8b (diff) | |
download | sql-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 'tests/Lexer')
-rw-r--r-- | tests/Lexer/ContextTest.php | 1 | ||||
-rw-r--r-- | tests/Lexer/IsMethodsTest.php | 1 | ||||
-rw-r--r-- | tests/Lexer/LexerTest.php | 1 | ||||
-rw-r--r-- | tests/Lexer/TokenTest.php | 1 | ||||
-rw-r--r-- | tests/Lexer/TokensListTest.php | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/tests/Lexer/ContextTest.php b/tests/Lexer/ContextTest.php index d822cd3..47bd10a 100644 --- a/tests/Lexer/ContextTest.php +++ b/tests/Lexer/ContextTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Lexer; diff --git a/tests/Lexer/IsMethodsTest.php b/tests/Lexer/IsMethodsTest.php index 56552c7..9095907 100644 --- a/tests/Lexer/IsMethodsTest.php +++ b/tests/Lexer/IsMethodsTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Lexer; diff --git a/tests/Lexer/LexerTest.php b/tests/Lexer/LexerTest.php index 353e80a..f5276af 100644 --- a/tests/Lexer/LexerTest.php +++ b/tests/Lexer/LexerTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Lexer; diff --git a/tests/Lexer/TokenTest.php b/tests/Lexer/TokenTest.php index 535f933..370824e 100644 --- a/tests/Lexer/TokenTest.php +++ b/tests/Lexer/TokenTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Lexer; diff --git a/tests/Lexer/TokensListTest.php b/tests/Lexer/TokensListTest.php index 4bb844a..a03bfad 100644 --- a/tests/Lexer/TokensListTest.php +++ b/tests/Lexer/TokensListTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Lexer; |