working on bootstrap comments.

This commit is contained in:
Taylor Otwell 2011-09-25 22:29:23 -05:00
parent 79c586523d
commit 91e3e3ddb0
1 changed files with 11 additions and 11 deletions

View File

@ -27,9 +27,8 @@
define('BLADE_EXT', '.blade.php'); define('BLADE_EXT', '.blade.php');
/** /**
* Load the classes that can't be resolved through the auto-loader. * Load the classes that can't be resolved through the auto-loader. These are typically classes
* Typically, these are classes that are used by the auto-loader * that are used by the auto-loader or configuration classes, and therefore cannot be auto-loaded.
* or configuration classes.
*/ */
require SYS_PATH.'facades'.EXT; require SYS_PATH.'facades'.EXT;
require SYS_PATH.'config'.EXT; require SYS_PATH.'config'.EXT;
@ -37,7 +36,10 @@
require SYS_PATH.'arr'.EXT; require SYS_PATH.'arr'.EXT;
/** /**
* Determine the application environment. The environment is typically * Determine the application environment. The environment is typically set by an environment
* variable on the server, as this provides the most accident-proof method of handling
* application environments. However, the environment could be manually set by the developer
* in the front controller if access to the environment variables is not available.
* set by an environment variable on the server. * set by an environment variable on the server.
*/ */
$environment = (isset($_SERVER['LARAVEL_ENV'])) ? $_SERVER['LARAVEL_ENV'] : null; $environment = (isset($_SERVER['LARAVEL_ENV'])) ? $_SERVER['LARAVEL_ENV'] : null;
@ -52,10 +54,9 @@
Config::$paths = $configs; Config::$paths = $configs;
/** /**
* Bootstrap the application inversion of control (IoC) container. * Bootstrap the application inversion of control (IoC) container. The container provides the
* The container provides the convenient resolution of objects and * convenient resolution of objects and their dependencies, allowing for flexibility and
* their dependencies, allowing for flexibility and testability * testability within the framework and application.
* within the framework.
*/ */
require SYS_PATH.'container'.EXT; require SYS_PATH.'container'.EXT;
@ -64,9 +65,8 @@
IoC::$container = $container; IoC::$container = $container;
/** /**
* Register the application auto-loader. The auto-loader is responsible * Register the application auto-loader. The auto-loader is responsible for the lazy-loading
* for the lazy-loading of all of the Laravel core classes, as well as * of all of the Laravel core classes, as well as the developer created libraries and models.
* the developer created libraries and models.
*/ */
spl_autoload_register(array('Laravel\\Loader', 'load')); spl_autoload_register(array('Laravel\\Loader', 'load'));