diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/highlight-query | 1 | ||||
-rwxr-xr-x | bin/lint-query | 2 | ||||
-rwxr-xr-x | bin/tokenize-query | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/bin/highlight-query b/bin/highlight-query index 577e4fb..a25a3e2 100755 --- a/bin/highlight-query +++ b/bin/highlight-query @@ -1,5 +1,6 @@ #!/usr/bin/env php <?php +declare(strict_types=1); $files = array( __DIR__ . "/../vendor/autoload.php", diff --git a/bin/lint-query b/bin/lint-query index 67e7114..8d7cd29 100755 --- a/bin/lint-query +++ b/bin/lint-query @@ -1,5 +1,6 @@ #!/usr/bin/env php <?php +declare(strict_types=1); $files = array( __DIR__ . "/../vendor/autoload.php", @@ -27,4 +28,3 @@ if (!$found) { $cli = new PhpMyAdmin\SqlParser\Utils\CLI(); exit($cli->runLint()); - diff --git a/bin/tokenize-query b/bin/tokenize-query index f32a4e0..97012c7 100755 --- a/bin/tokenize-query +++ b/bin/tokenize-query @@ -1,5 +1,6 @@ #!/usr/bin/env php <?php +declare(strict_types=1); $files = array( __DIR__ . "/../vendor/autoload.php", |