[PSR-12] Update param type array to use short array syntax (#828)

* Update Param type array to use short array syntax (PSR-12)

* Update Param type array to use short array syntax (PSR-12)
This commit is contained in:
Matthew Hailwood
2019-09-16 11:52:59 +02:00
committed by Barry vd. Heuvel
parent d200f2284b
commit 51a72d7766
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -730,7 +730,7 @@ class ModelsCommand extends Command
if (is_bool($default)) {
$default = $default ? 'true' : 'false';
} elseif (is_array($default)) {
$default = 'array()';
$default = '[]';
} elseif (is_null($default)) {
$default = 'null';
} elseif (is_int($default)) {