Browse Source

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

Taylor Otwell 13 years ago
parent
commit
c4ece2d51f
1 changed files with 5 additions and 5 deletions
  1. 5 5
      system/db/eloquent/model.php

+ 5 - 5
system/db/eloquent/model.php

@@ -424,9 +424,13 @@ abstract class Model {
 	 */
 	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 @@ abstract class Model {
 
 			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];
-		}
 	}
 
 	/**