From 4e9369f5bf4e281760b617851202d689b959f3cd Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 20 Feb 2012 15:50:58 -0600 Subject: [PATCH] rename autoloading method. --- laravel/bundle.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laravel/bundle.php b/laravel/bundle.php index fc7335e9..7199824c 100644 --- a/laravel/bundle.php +++ b/laravel/bundle.php @@ -69,7 +69,7 @@ public static function register($bundle, $config = array()) // way to register mappings withuot a bootstrap. if (isset($config['autoloads'])) { - static::autoloading($bundle, $config); + static::autoloads($bundle, $config); } } @@ -140,7 +140,7 @@ public static function routes($bundle) * @param array $config * @return void */ - protected static function autoloading($bundle, $config) + protected static function autoloads($bundle, $config) { $path = trim(Bundle::path($bundle), DS);