10000 fixed PHP 5.3 compat in tests · src-run/symfony@c59a3da · GitHub
[go: up one dir, main page]

Skip to content

Commit c59a3da

Browse files
committed
fixed PHP 5.3 compat in tests
1 parent 60e6ccd commit c59a3da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Console/Tests/ApplicationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ public function testAddingOptionWithDuplicateShortcut()
661661

662662
$application
663663
->register('foo')
664-
->setAliases(['f'])
664+
->setAliases(array('f'))
665665
->setDefinition(array(new InputOption('survey', 'e', InputOption::VALUE_REQUIRED, 'My option with a shortcut.')))
666666
->setCode(function (InputInterface $input, OutputInterface $output) {})
667667
;

0 commit comments

Comments
 (0)
0