예제 #1
0
파일: HasOne.php 프로젝트: nextras/orm
 protected function getPrimaryValue()
 {
     if (!$this->primaryValue && $this->value && $this->value->isPersisted()) {
         $this->primaryValue = $this->value->getValue('id');
     }
     return $this->primaryValue;
 }