예제 #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 getProjects()
 {
     $this->__initializer__ && $this->__initializer__->__invoke($this, 'getProjects', array());
     return parent::getProjects();
 }