user ser modify
This commit is contained in:
parent
9bc2e4e065
commit
60e3d2e97a
|
@ -11,14 +11,13 @@ namespace Westdc\User;
|
|||
use Zend\ServiceManager\ServiceManager;
|
||||
use Zend\ServiceManager\ServiceManagerAwareInterface;
|
||||
|
||||
class Group implements ServiceManagerAwareInterface{
|
||||
class Group implements ServiceManagerAwareInterface {
|
||||
|
||||
protected $serviceManager;
|
||||
|
||||
private $db;
|
||||
|
||||
public function setServiceManager(ServiceManager $serviceManager)
|
||||
{
|
||||
public function setServiceManager (ServiceManager $serviceManager) {
|
||||
$this->serviceManager = $serviceManager;
|
||||
|
||||
$this->init();
|
||||
|
@ -26,8 +25,7 @@ class Group implements ServiceManagerAwareInterface{
|
|||
return $this;
|
||||
}
|
||||
|
||||
private function init()
|
||||
{
|
||||
private function init () {
|
||||
$dbService = $this->serviceManager->get('Db');
|
||||
$this->db = $dbService->getPdo();
|
||||
}
|
||||
|
|
|
@ -71,5 +71,4 @@ class User extends AbstractEventManager implements ServiceManagerAwareInterface
|
|||
return $rs->fetchAll(\PDO::FETCH_ASSOC);
|
||||
}
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue