1
0
Fork 0

Use array() instead of [] for PHP 5.3 compat

pull/7936/head
Nils Adermann 2019-11-07 22:01:37 +01:00
parent bf99f1a341
commit 737a613a50
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class InstallerTest extends TestCase
{
$dumper = new ArrayDumper();
$comparable = [];
$comparable = array();
foreach ($packages as $package) {
$comparable[] = $dumper->dump($package);
}