Skip to content

Commit 145fbc8

Browse files
committed
Use traditional array syntax
1 parent 93a9689 commit 145fbc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

parallel-lint

+2-2
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)