Ejemplo n.º 1
0
 /**
  * @param Participant $publisher
  * @return Artwork
  */
 public function addPublisher(Participant $publisher)
 {
     $publisher->setType(Participant::TYPE_PUBLISHER);
     $publisher->setArtwork($this);
     $this->participants->add($publisher);
     return $this;
 }