Browse Source

Refactoring eloquent.

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

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

@@ -483,9 +483,9 @@ abstract class Model {
 			return call_user_func_array(array($this, '_'.$method), $parameters);
 		}
 
-		// All of the aggregate functions can be passed directly to the query instance.
-		// For these functions, we can simply return the response of the query.
-		if (in_array($method, array('count', 'sum', 'min', 'max', 'avg')))
+		// All of the aggregate and persistance functions can be passed directly to the query
+		// instance. For these functions, we can simply return the response of the query.
+		if (in_array($method, array('insert', 'update', 'count', 'sum', 'min', 'max', 'avg')))
 		{
 			return call_user_func_array(array($this->query, $method), $parameters);
 		}