Skip to content
This repository has been archived by the owner on Apr 16, 2020. It is now read-only.

Commit

Permalink
#24 - correcting PHP 5.3 syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ocramius committed Oct 15, 2015
1 parent 44d2eb1 commit bad0e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ZeffMuTest/AppFunctionalTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ public function testControllerPluginsAreCorrectlyInjectedInFactories()
{
$helper = $this->getMock(
'Zend\Mvc\Controller\Plugin\PluginInterface',
['setController', 'getController', '__invoke']
array('setController', 'getController', '__invoke')
);

$request = new Request();
Expand Down

0 comments on commit bad0e75

Please sign in to comment.