Browse Source

rename autoloading method.

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

+ 2 - 2
laravel/bundle.php

@@ -69,7 +69,7 @@ class Bundle {
 		// way to register mappings withuot a bootstrap.
 		if (isset($config['autoloads']))
 		{
-			static::autoloading($bundle, $config);
+			static::autoloads($bundle, $config);
 		}
 	}
 
@@ -140,7 +140,7 @@ class Bundle {
 	 * @param  array   $config
 	 * @return void
 	 */
-	protected static function autoloading($bundle, $config)
+	protected static function autoloads($bundle, $config)
 	{
 		$path = trim(Bundle::path($bundle), DS);