diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/highlight-query | 4 | ||||
-rwxr-xr-x | bin/lint-query | 4 | ||||
-rwxr-xr-x | bin/tokenize-query | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/bin/highlight-query b/bin/highlight-query index a25a3e2..53d380f 100755 --- a/bin/highlight-query +++ b/bin/highlight-query @@ -2,12 +2,12 @@ <?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) { diff --git a/bin/lint-query b/bin/lint-query index 8d7cd29..1fe12f2 100755 --- a/bin/lint-query +++ b/bin/lint-query @@ -2,12 +2,12 @@ <?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) { diff --git a/bin/tokenize-query b/bin/tokenize-query index 97012c7..e1a55f6 100755 --- a/bin/tokenize-query +++ b/bin/tokenize-query @@ -2,12 +2,12 @@ <?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) { |