Skip to content

Commit 3474298

Browse files
committed
MAGETWO-51439: [Github] System Upgrade drop-down does not work when add git based repo #3935
- Added empty array initialization
1 parent 29358db commit 3474298

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/InfoCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function run($package, $installed = false)
6161
}
6262

6363
$rawLines = explode(PHP_EOL, $output);
64-
64+
$result = [];
6565
foreach ($rawLines as $line) {
6666
$chunk = explode(':', $line);
6767
if (count($chunk) === 2) {

0 commit comments

Comments
 (0)