예제 #1
0
파일: reference.php 프로젝트: cepharum/txf
 /**
  * Unbinds current reference of relation.
  *
  * @return $this
  */
 public function unbind()
 {
     if ($this->referencingLeftToRight) {
         $this->predecessorEnd->bindOnSuccessor(null);
     } else {
         $this->successorEnd->bindOnPredecessor(null);
     }
     return $this;
 }