Skip to content

Commit 974aadb

Browse files
committed
fix autoload
1 parent ceefe56 commit 974aadb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/codacycoverage

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<?php
33

44
$files = array(
5-
"vendor/autoload.php", // this one should be looked for first
5+
dirname(__DIR__) . "/vendor/autoload.php",
66
__DIR__ . "/../../vendor/autoload.php",
77
__DIR__ . "/../../../autoload.php",
8-
dirname(__DIR__) . "/vendor/autoload.php"
8+
"vendor/autoload.php"
99
);
1010

1111
$found = false;

0 commit comments

Comments
 (0)