fezfez / service-locator-factory
Get the service locator in zf2
Installs: 1 021
Dependents: 0
Suggesters: 0
Security: 0
Stars: 17
Watchers: 4
Forks: 4
Open Issues: 1
Requires
- php: >=5.3.0
- zendframework/zendframework: 2.*
This package is auto-updated.
Last update: 2020-06-22 09:43:32 UTC
README
Allow you to get ServiceManager from everywhere in your application by calling this static factory.
<?php
namespace Corp\News;
use Corp\News\NewsDAO;
use Zend\ServiceManager\ServiceManager;
use Corp\ServiceLocator\ServiceLocator;
class NewsDAOFactory
{
private function __construct()
{
}
/**
* @return \Corp\News\NewsDAO
*/
public static function getInstance()
{
$sm = ServiceLocatorFactory::getInstance();
$em = $sm->get('doctrine.entitymanager.orm_default');
return new NewsDAO($em);
}
}