コード例 #1
0
ファイル: Calendar.php プロジェクト: Theodia/theodia.org
 /**
  * Constructor
  * @param string $name
  */
 public function __construct($name = '')
 {
     $this->events = new ArrayCollection();
     $this->userCalendars = new ArrayCollection();
     parent::__construct();
     $this->setName($name);
 }
コード例 #2
0
ファイル: Place.php プロジェクト: Theodia/theodia.org
 public function __construct(array $name = [])
 {
     $this->images = new ArrayCollection();
     $this->userPlaces = new ArrayCollection();
     parent::__construct();
     $this->setName($name);
 }