Skip to content

Commit e326021

Browse files
committed
fixed CS
1 parent db33c3e commit e326021

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/Input/InputDefinitionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public function testGetArgumentDefaults()
186186
new InputArgument('foo1', InputArgument::OPTIONAL),
187187
new InputArgument('foo2', InputArgument::OPTIONAL, '', 'default'),
188188
new InputArgument('foo3', InputArgument::OPTIONAL | InputArgument::IS_ARRAY),
189-
// new InputArgument('foo4', InputArgument::OPTIONAL | InputArgument::IS_ARRAY, '', array(1, 2)),
189+
// new InputArgument('foo4', InputArgument::OPTIONAL | InputArgument::IS_ARRAY, '', [1, 2]),
190190
]);
191191
$this->assertEquals(['foo1' => null, 'foo2' => 'default', 'foo3' => []], $definition->getArgumentDefaults(), '->getArgumentDefaults() return the default values for each argument');
192192

0 commit comments

Comments
 (0)