Browse Source

more autoloader tweaks.

Taylor Otwell 13 years ago
parent
commit
56ae5e9a7b
1 changed files with 21 additions and 12 deletions
  1. 21 12
      laravel/autoloader.php

+ 21 - 12
laravel/autoloader.php

@@ -181,33 +181,42 @@ class Autoloader {
 	}
 
 	/**
-	 * Map namespaces to directories.
+	 * Register underscored "namespaces" to directory mappings.
 	 *
 	 * @param  array  $mappings
 	 * @return void
 	 */
-	public static function namespaces($mappings)
+	public static function underscored($mappings)
 	{
-		foreach ($mappings as $namespace => $directory)
-		{
-			$namespace = trim($namespace, '\\').'\\';
-
-			static::$namespaces[$namespace] = head(static::format($directory));
-		}
+		static::namespaces($mappings, '_');
 	}
 
 	/**
-	 * Register underscored "namespaces" to directory mappings.
+	 * Map namespaces to directories.
 	 *
-	 * @param  array  $mappings
+	 * @param  array   $mappings
+	 * @param  string  $append
 	 * @return void
 	 */
-	public static function underscored($mappings)
+	public static function namespaces($mappings, $append = '\\')
 	{
 		foreach ($mappings as $namespace => $directory)
 		{
-			static::$namespaces[$namespace.'_'] = head(static::format($directory));
+			// When adding new namespaces to the mappings, we will unset the previously
+			// mapped value if it existed. This allows previously registered spaces to
+			// be mapped to new directories on the fly.
+			$namespace = trim($namespace, $append).$append;
+
+			unset(static::$namespaces[$namespace]);
+
+			$namespaces[$namespace] = head(static::format($directory));
 		}
+
+		// We'll array_merge the new mappings onto the front of the array so
+		// derivative namespaces are not always shadowed by their parents.
+		// For instance, when mappings Laravel\Docs, we don't want the
+		// main Laravel namespace to always override it.
+		static::$namespaces = array_merge($namespaces, static::$namespaces);
 	}
 
 	/**