Browse Source

Added Eloquent::all().

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

+ 1 - 1
system/db/eloquent.php

@@ -477,7 +477,7 @@ abstract class Eloquent {
 	{
 		$model = static::make(get_called_class());
 
-		if ($method == 'get')
+		if ($method == 'get' or $method == 'all')
 		{
 			return $model->_get();
 		}