Browse Source

Removed transaction method from Eloquent model since it is made pointless by DB::transaction.

Taylor Otwell 13 years ago
parent
commit
d80730cf0d
1 changed files with 0 additions and 11 deletions
  1. 0 11
      laravel/database/eloquent/model.php

+ 0 - 11
laravel/database/eloquent/model.php

@@ -157,17 +157,6 @@ abstract class Model {
 		static::$accessible = $attributes;
 	}
 
-	/**
-	 * Execute a callback wrapped in a database transaction.
-	 *
-	 * @param  Closure  $callback
-	 * @return void
-	 */
-	public static function transaction($callback)
-	{
-		with(new static)->query()->connection()->transaction($callback);
-	}
-
 	/**
 	 * Create a new model and store it in the database.
 	 *