コード例 #1
0
ファイル: Group.php プロジェクト: vol4onok/symfony
 public function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: Group.php プロジェクト: StanFrag/CCM-Stage
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->users = new \Doctrine\Common\Collections\ArrayCollection();
 }
コード例 #3
0
ファイル: Group.php プロジェクト: SM2015/Etab-hibrido
 /**
  * Constructor
  */
 public function __construct($name, $roles = array())
 {
     parent::__construct($name, $roles = array());
     $this->indicadores = new \Doctrine\Common\Collections\ArrayCollection();
     $this->salas = new \Doctrine\Common\Collections\ArrayCollection();
 }
コード例 #4
0
ファイル: Group.php プロジェクト: TheRatG/om-cms
 public function __construct()
 {
     parent::__construct('admin', []);
 }
コード例 #5
0
ファイル: Group.php プロジェクト: vteco/veg
 public function __construct($name, $roles = array())
 {
     parent::__construct($name, $roles = array());
 }