8000 Merge branch '3.1' · symfony/symfony@5042788 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5042788

Browse files
committed
Merge branch '3.1'
* 3.1: fixed PHP 5.3 compat in tests
2 parents 5f328e0 + defe88f commit 5042788

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
@@ -749,7 +749,7 @@ public function testAddingOptionWithDuplicateShortcut()
749749

750750
$application
751751
->register('foo')
752-
->setAliases(['f'])
752+
->setAliases(array('f'))
753753
->setDefinition(array(new InputOption('survey', 'e', InputOption::VALUE_REQUIRED, 'My option with a shortcut.')))
754754
->setCode(function (InputInterface $input, OutputInterface $output) {})
755755
;

0 commit comments

Comments
 (0)
0