コード例 #1
0
ファイル: User.php プロジェクト: jhonmike/zf-user
 public function __construct(EntityManager $em, SmtpTransport $transport, $view)
 {
     parent::__construct($em);
     $this->entity = "Zf2User\\Entity\\User";
     $this->transport = $transport;
     $this->view = $view;
 }
コード例 #2
0
ファイル: Resource.php プロジェクト: jhonmike/zf-acl
 public function __construct(\Doctrine\ORM\EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "Zf2Acl\\Entity\\Resource";
 }
コード例 #3
0
ファイル: Perfil.php プロジェクト: jhonmike/zf-user
 public function __construct(\Doctrine\ORM\EntityManager $em)
 {
     parent::__construct($em);
     $this->entity = "Zf2User\\Entity\\Perfil";
 }