Browse Source

clean up auto-loader registrations.

Taylor Otwell 12 years ago
parent
commit
1ff9deb150
1 changed files with 5 additions and 2 deletions
  1. 5 2
      laravel/bundle.php

+ 5 - 2
laravel/bundle.php

@@ -67,7 +67,10 @@ class Bundle {
 		// It is possible for the develoepr to specify auto-loader mappings
 		// directly on the bundle registration. This provides a convenient
 		// way to register mappings withuot a bootstrap.
-		static::autoloading($bundle, $config);
+		if (isset($config['autoloads']))
+		{
+			static::autoloading($bundle, $config);
+		}
 	}
 
 	/**
@@ -141,7 +144,7 @@ class Bundle {
 	{
 		$path = trim(Bundle::path($bundle), DS);
 
-		foreach (array_get($config, 'autoloads', array()) as $type => $mappings)
+		foreach ($config['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