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

Commit

Permalink
Merge pull request zendframework/zendframework#6042 in develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks3w committed Mar 26, 2014
3 parents 5214879 + e96ea9a + 9ae277f commit 2725baa
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Util/ModuleLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public function __construct(array $configuration)
/**
* Get the application
*
* @return Zend\Mvc\Application
* @return \Zend\Mvc\Application
*/
public function getApplication()
{
Expand All @@ -62,16 +62,17 @@ public function getApplication()
/**
* Get the module manager
*
* @return Zend\ModuleManager\ModuleManager
* @return \Zend\ModuleManager\ModuleManager
*/
public function getModuleManager()
{
return $this->getServiceManager()->get('ModuleManager');
}

/**
* Get module
* Get module by name
*
* @param $moduleName
* @return mixed
*/
public function getModule($moduleName)
Expand All @@ -82,7 +83,7 @@ public function getModule($moduleName)
/**
* Get the service manager
*
* @var ServiceManager
* @return ServiceManager
*/
public function getServiceManager()
{
Expand Down

0 comments on commit 2725baa

Please sign in to comment.