예제 #1
0
파일: Website.php 프로젝트: bakgat/notos
 public function __construct(Name $name, URL $url)
 {
     parent::__construct($name);
     $this->setUrl($url);
     $this->objectives = new ArrayCollection();
     $this->tags = new ArrayCollection();
     $this->setSuggestion(false);
 }
예제 #2
0
파일: Blog.php 프로젝트: bakgat/notos
 public function __construct(Name $name, URL $url, Organization $organization)
 {
     parent::__construct($name);
     $this->setURL($url);
     $this->setOrganization($organization);
 }