Access foreign property in Belongs_To through a getter

This commit is contained in:
Pavel Puchkin 2013-05-08 11:39:51 +11:00
parent cffded660c
commit 641ac8d69c
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ public function match($relationship, &$children, $parents)
*/
public function foreign_value()
{
return $this->base->get_attribute($this->foreign);
return $this->base->{$this->foreign};
}
/**
@ -126,4 +126,4 @@ public function bind($id)
return $this->base;
}
}
}