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/Utils | |
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/Utils')
-rw-r--r-- | tests/Utils/BufferedQueryTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/CLITest.php | 1 | ||||
-rw-r--r-- | tests/Utils/ErrorTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/FormatterTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/MiscTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/QueryTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/RoutineTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/TableTest.php | 1 | ||||
-rw-r--r-- | tests/Utils/TokensTest.php | 1 |
9 files changed, 9 insertions, 0 deletions
diff --git a/tests/Utils/BufferedQueryTest.php b/tests/Utils/BufferedQueryTest.php index f31dd78..bbf886f 100644 --- a/tests/Utils/BufferedQueryTest.php +++ b/tests/Utils/BufferedQueryTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/CLITest.php b/tests/Utils/CLITest.php index ebcd35e..bacf5fb 100644 --- a/tests/Utils/CLITest.php +++ b/tests/Utils/CLITest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/ErrorTest.php b/tests/Utils/ErrorTest.php index d7d1393..7e1326f 100644 --- a/tests/Utils/ErrorTest.php +++ b/tests/Utils/ErrorTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/FormatterTest.php b/tests/Utils/FormatterTest.php index 152359e..7776a8e 100644 --- a/tests/Utils/FormatterTest.php +++ b/tests/Utils/FormatterTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/MiscTest.php b/tests/Utils/MiscTest.php index 01a2926..dbd200e 100644 --- a/tests/Utils/MiscTest.php +++ b/tests/Utils/MiscTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/QueryTest.php b/tests/Utils/QueryTest.php index 6991870..0d62915 100644 --- a/tests/Utils/QueryTest.php +++ b/tests/Utils/QueryTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/RoutineTest.php b/tests/Utils/RoutineTest.php index 9a7c4ca..81a8325 100644 --- a/tests/Utils/RoutineTest.php +++ b/tests/Utils/RoutineTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/TableTest.php b/tests/Utils/TableTest.php index fe68100..9d5d3b0 100644 --- a/tests/Utils/TableTest.php +++ b/tests/Utils/TableTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; diff --git a/tests/Utils/TokensTest.php b/tests/Utils/TokensTest.php index 533021c..200dfe6 100644 --- a/tests/Utils/TokensTest.php +++ b/tests/Utils/TokensTest.php @@ -1,4 +1,5 @@ <?php +declare(strict_types=1); namespace PhpMyAdmin\SqlParser\Tests\Utils; |