Ejemplo n.º 1
0
 /**
  * 
  * @param Service $service
  * @return \Cloud\LdapBundle\Entity\Password
  */
 public function setService($service)
 {
     if ($this->service !== null && in_array($this, $this->service->getPasswords())) {
         $this->service->removePassword($this);
     }
     $this->service = $service;
     if (!in_array($this, $this->service->getPasswords())) {
         $this->service->addPassword($this);
     }
     return $this;
 }