Commit 76cf877d authored by Taylor Otwell's avatar Taylor Otwell

Refactoring eloquent.

parent 718d51e0
...@@ -483,9 +483,9 @@ abstract class Model { ...@@ -483,9 +483,9 @@ abstract class Model {
return call_user_func_array(array($this, '_'.$method), $parameters); return call_user_func_array(array($this, '_'.$method), $parameters);
} }
// All of the aggregate functions can be passed directly to the query instance. // All of the aggregate and persistance functions can be passed directly to the query
// For these functions, we can simply return the response of 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'))) if (in_array($method, array('insert', 'update', 'count', 'sum', 'min', 'max', 'avg')))
{ {
return call_user_func_array(array($this->query, $method), $parameters); return call_user_func_array(array($this->query, $method), $parameters);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment