예제 #1
0
파일: ToMany.php 프로젝트: vigm/advancedMD
 protected function ensureDoesNotExist($model)
 {
     if ($this->has($model)) {
         $this->related->remove($model);
         parent::ensureDoesNotExist($model);
     }
 }
예제 #2
0
파일: ToOne.php 프로젝트: vigm/advancedMD
 protected function ensureDoesNotExist($model)
 {
     if ($this->related === $model) {
         $this->related = NULL;
         parent::ensureDoesNotExist($model);
     }
 }