diff options
Diffstat (limited to 'bin/tokenize-query')
-rwxr-xr-x | bin/tokenize-query | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/tokenize-query b/bin/tokenize-query index f32a4e0..e1a55f6 100755 --- a/bin/tokenize-query +++ b/bin/tokenize-query @@ -1,12 +1,13 @@ #!/usr/bin/env php <?php +declare(strict_types=1); -$files = array( +$files = [ __DIR__ . "/../vendor/autoload.php", __DIR__ . "/../../vendor/autoload.php", __DIR__ . "/../../../autoload.php", "vendor/autoload.php" -); +]; $found = false; foreach ($files as $file) { |