示例#1
0
 public function __construct()
 {
     parent::__construct();
 }
示例#2
0
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->users = new \Doctrine\Common\Collections\ArrayCollection();
 }
示例#3
0
 /**
  * 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());
 }