rearrange __get hierarchy so eloquent models can have methods that have the same name as columns.

This commit is contained in:
Taylor Otwell 2011-08-16 23:04:25 -05:00
parent 695420c127
commit c4ece2d51f
1 changed files with 5 additions and 5 deletions

View File

@ -424,9 +424,13 @@ public function delete($id = null)
*/
public function __get($key)
{
if (array_key_exists($key, $this->attributes))
{
return $this->attributes[$key];
}
// Is the requested item a model relationship that has already been loaded?
// All of the loaded relationships are stored in the "ignore" array.
if (array_key_exists($key, $this->ignore))
elseif (array_key_exists($key, $this->ignore))
{
return $this->ignore[$key];
}
@ -438,10 +442,6 @@ public function __get($key)
return $this->ignore[$key] = (in_array($this->relating, array('has_one', 'belongs_to'))) ? $query->first() : $query->get();
}
elseif (array_key_exists($key, $this->attributes))
{
return $this->attributes[$key];
}
}
/**