Esempio n. 1
0
 /**
  * Set client
  *
  * @param \ITSS\TicketsBundle\Entity\Client $client
  * @return Projet
  */
 public function setClient(\ITSS\TicketsBundle\Entity\Client $client)
 {
     $this->client = $client;
     $client->addProject($this);
     return $this;
 }
 /**
  * {@inheritDoc}
  */
 public function addProject(\ITSS\TicketsBundle\Entity\Projet $projects)
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'addProject', array($projects));
     return parent::addProject($projects);
 }