Browse Source

added bundle::disable method.

Taylor Otwell 13 years ago
parent
commit
e4d55cbc8e
1 changed files with 11 additions and 0 deletions
  1. 11 0
      laravel/bundle.php

+ 11 - 0
laravel/bundle.php

@@ -114,6 +114,17 @@ class Bundle {
 		static::$bundles[$config['name']] = array_merge($defaults, $config);
 	}
 
+	/**
+	 * Disable a bundle for the current request.
+	 *
+	 * @param  string  $bundle
+	 * @return void
+	 */
+	public static function disable($bundle)
+	{
+		unset(static::$bundles[$bundle]);
+	}
+
 	/**
 	 * Load a bundle by running it's start-up script.
 	 *