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

Commit

Permalink
Merge branch 'hotfix/configuration-rename' of https://github.com/Evan…
Browse files Browse the repository at this point in the history
  • Loading branch information
weierophinney committed Jul 20, 2012
7 parents 24f498b + d2dd157 + 6c759d8 + 51b0320 + aabe1c0 + e76b67c + e53be00 commit 75af0e5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

namespace Zend\Navigation\View;

use Zend\ServiceManager\ConfigurationInterface;
use Zend\ServiceManager\ConfigInterface;
use Zend\ServiceManager\ServiceManager;
use Zend\View\HelperPluginManager;

Expand All @@ -21,7 +21,7 @@
* @package Zend_Navigation
* @subpackage View
*/
class HelperConfiguration implements ConfigurationInterface
class HelperConfig implements ConfigInterface
{
/**
* Configure the provided service manager instance with the configuration
Expand Down
8 changes: 4 additions & 4 deletions test/ServiceFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

use Zend\Config;
use Zend\Mvc\Router\RouteMatch;
use Zend\Mvc\Service\ServiceManagerConfiguration;
use Zend\Mvc\Service\ServiceManagerConfig;
use Zend\Navigation;
use Zend\Navigation\Page\Mvc as MvcPage;
use Zend\Navigation\Service\ConstructedNavigationFactory;
Expand Down Expand Up @@ -48,7 +48,7 @@ protected function setUp()
'extra_config' => array(
'service_manager' => array(
'factories' => array(
'Configuration' => function() {
'Config' => function() {
return array(
'navigation' => array(
'file' => __DIR__ . '/_files/navigation.xml',
Expand Down Expand Up @@ -81,8 +81,8 @@ protected function setUp()
),
);

$sm = $this->serviceManager = new ServiceManager(new ServiceManagerConfiguration);
$sm->setService('ApplicationConfiguration', $config);
$sm = $this->serviceManager = new ServiceManager(new ServiceManagerConfig);
$sm->setService('ApplicationConfig', $config);
$sm->get('ModuleManager')->loadModules();
$sm->get('Application')->bootstrap();

Expand Down

0 comments on commit 75af0e5

Please sign in to comment.