Skip to content

Commit 639762f

Browse files
glenscgrogy
authored andcommitted
Use traditional array syntax
1 parent b3d58c6 commit 639762f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parallel-lint

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ if (!defined('PHP_VERSION_ID') || PHP_VERSION_ID < 50400) {
3535
exit(254);
3636
}
3737

38-
$autoloadLocations = [
38+
$autoloadLocations = array(
3939
getcwd() . '/vendor/autoload.php',
4040
getcwd() . '/../../autoload.php',
4141
__DIR__ . '/vendor/autoload.php',
4242
__DIR__ . '/../vendor/autoload.php',
4343
__DIR__ . '/../../../autoload.php',
4444
__DIR__ . '/../../autoload.php',
45-
];
45+
);
4646

4747
$loaded = false;
4848
foreach ($autoloadLocations as $autoload) {

0 commit comments

Comments
 (0)