Exemple #1
0
 /**
  * Clears the current object, sets all attributes to their default values and removes
  * outgoing references as well as back-references (from other objects to this one. Results probably in a database
  * change of those foreign objects when you call `save` there).
  */
 public function clear()
 {
     if (null !== $this->aScore) {
         $this->aScore->removePerformanceScore($this);
     }
     if (null !== $this->aRoutine) {
         $this->aRoutine->removePerformanceScore($this);
     }
     if (null !== $this->aJudge) {
         $this->aJudge->removePerformanceScore($this);
     }
     $this->execution = null;
     $this->choreography = null;
     $this->music_and_timing = null;
     $this->id = null;
     $this->routine_id = null;
     $this->judge_id = null;
     $this->total = null;
     $this->alreadyInSave = false;
     $this->clearAllReferences();
     $this->resetModified();
     $this->setNew(true);
     $this->setDeleted(false);
 }