Merge branch '3.0' into 3.1

* 3.0:
  fixed PHP 5.3 compat in tests
This commit is contained in:
Fabien Potencier 2016-05-26 10:07:35 +02:00
commit defe88fee1
1 changed files with 1 additions and 1 deletions

View File

@ -749,7 +749,7 @@ class ApplicationTest extends \PHPUnit_Framework_TestCase
$application
->register('foo')
->setAliases(['f'])
->setAliases(array('f'))
->setDefinition(array(new InputOption('survey', 'e', InputOption::VALUE_REQUIRED, 'My option with a shortcut.')))
->setCode(function (InputInterface $input, OutputInterface $output) {})
;