Skip to content

Commit

Permalink
Fix for php 5.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Jun 27, 2017
1 parent ada0ccc commit 273a137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
},
"require-dev": {
"phpunit/phpunit": "^4",
"symfony/console": "^3",
"symfony/console": "^2.5|^3",
"satooshi/php-coveralls": "^1.0",
"squizlabs/php_codesniffer": "2.*"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/InjectConfigForCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function testInjection()
$command = new MyFooCommand();
$input = new StringInput('my:foo');

[$status, $output] = $this->runCommandViaApplication($command, $input);
list($status, $output) = $this->runCommandViaApplication($command, $input);

$expectedOutput = <<< EOT
Enter my:foo
Expand Down

0 comments on commit 273a137

Please sign in to comment.