Skip to content

Commit 1567ce6

Browse files
committed
Merge branch '2.7' int pusto 2.8
* 2.7: fixed PHP 5.3 compat in tests
2 parents e89e165 + 557bc51 commit 1567ce6

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

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

0 commit comments

Comments
 (0)