Skip to content

Commit

Permalink
fix typo : "StdClass" should "stdClass" with little "s"
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jul 13, 2013
1 parent 7a5efd0 commit 3b20b2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/DiCompatibilityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ public function providesClassWithConstructionParameters()
{
$serviceManager = new \Zend\ServiceManager\ServiceManager;
$serviceManager->setService('EventManager', new \Zend\EventManager\EventManager);
$serviceManager->setService('Request', new \StdClass);
$serviceManager->setService('Response', new \StdClass);
$serviceManager->setService('Request', new \stdClass);
$serviceManager->setService('Response', new \stdClass);

return array(
array('Zend\Config\Config', array('array' => array())),
Expand Down

0 comments on commit 3b20b2f

Please sign in to comment.