diff options
Diffstat (limited to 'bin/highlight-query')
-rwxr-xr-x | bin/highlight-query | 4 |
1 files changed, 2 insertions, 2 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) { |