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

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into feature/console
Browse files Browse the repository at this point in the history
Conflicts:
	library/Zend/Mvc/Service/ModuleManagerFactory.php
	library/Zend/Mvc/View/Http/ViewManager.php
	tests/Zend/Mvc/ApplicationTest.php
  • Loading branch information
Thinkscape committed Jul 22, 2012
8 parents 48ad56f + 75af0e5 + 24f498b + d2dd157 + 6c759d8 + 51b0320 + aabe1c0 + e76b67c commit 35376fd
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 35376fd

Please sign in to comment.