Browse Source

updating bundle class loading.

Taylor Otwell 13 years ago
parent
commit
16dca5e74e
1 changed files with 3 additions and 1 deletions
  1. 3 1
      laravel/bundle.php

+ 3 - 1
laravel/bundle.php

@@ -138,7 +138,9 @@ class Bundle {
 	{
 		$path = trim(Bundle::path($bundle), DS);
 
-		foreach ((array) $config['autoloads'] as $type => $mappings)
+		$autoloads = array_get($config, 'autoloads', array());
+
+		foreach ($autoloads as $type => $mappings)
 		{
 			// When registering each type of mapping we'll replace the (:bundle)
 			// place-holder with the path to the bundle's root directory, so