Browse Source

use start.php for bundle bootstrapping, bundle.php for info.

Taylor Otwell 13 years ago
parent
commit
3292024e69
3 changed files with 2 additions and 6 deletions
  1. 0 0
      application/start.php
  2. 2 2
      laravel/bundle.php
  3. 0 4
      laravel/config.php

+ 0 - 0
application/bundle.php → application/start.php


+ 2 - 2
laravel/bundle.php

@@ -62,7 +62,7 @@ class Bundle {
 			// the location automatically since we know it.
 			if ($item->isDir())
 			{
-				$path = $item->getRealPath().DS.'bundle.info';
+				$path = $item->getRealPath().DS.'bundle.php';
 
 				// If we found a file, we'll require in the array it contains
 				// and add it to the directory. The info array will contain
@@ -146,7 +146,7 @@ class Bundle {
 		// the bundle for use by the application. The start script may register any
 		// classes the bundle uses with the auto-loader, or perhaps will start any
 		// dependent bundles so that they are available.
-		if (file_exists($path = static::path($bundle).'bundle'.EXT))
+		if (file_exists($path = static::path($bundle).'start'.EXT))
 		{
 			require $path;
 		}

+ 0 - 4
laravel/config.php

@@ -199,10 +199,6 @@ class Config {
 		// Configuration files can be made specific for a given environment. If an
 		// environment has been set, we will merge the environment configuration
 		// in last, so that it overrides all other options.
-		//
-		// This allows the developer to quickly and easily create configurations
-		// for various scenarios, such as local development and production,
-		// without constantly changing configuration files.
 		if (isset($_SERVER['LARAVEL_ENV']))
 		{
 			$paths[] = $paths[count($paths) - 1].$_SERVER['LARAVEL_ENV'].'/';