Exemple #1
0
 /**
  * Add the given certStatusLog to the list. This method internally calls 
  * <code>$certStatusLog->setSite($this)</code> to keep both  
  * sides of the bidirectional relationship consistent (i.e. don't separately 
  * call <code>$certStatusLog->setSite($this)</code>). 
  * <p>
  * This is the INVERSE side of the ORM relation so the internal call to 
  * setSite actually establishes the relationship in the DB. 
  * 
  * @param \CertificationStatusLog $certStatusLog 
  */
 public function addCertificationStatusLog(\CertificationStatusLog $certStatusLog)
 {
     $this->certificationStatusLog[] = $certStatusLog;
     $certStatusLog->setParentSite($this);
 }