Skip to content

Commit eb0e005

Browse files
authored
Merge pull request #175 from BIG5Concepts/php7.2-syntax
Fix syntax error with PHP 7.2
2 parents f1cf370 + c837f50 commit eb0e005

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Commands/DatabaseUpgradeCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ protected function determineDatabaseType($databaseId)
106106
return $this->menu('Which type of database would you like to create?', collect($this->databaseTypes)
107107
->filter(function ($label, $type) use ($possibleUpgrades) {
108108
return in_array($type, $possibleUpgrades);
109-
})->all(),
109+
})->all()
110110
);
111111
}
112112
}

0 commit comments

Comments
 (0)