Browse Source

cleaning up.

Taylor Otwell 12 years ago
parent
commit
e12b554cbb
2 changed files with 9 additions and 4 deletions
  1. 6 4
      laravel/core.php
  2. 3 0
      laravel/documentation/changes.md

+ 6 - 4
laravel/core.php

@@ -149,16 +149,18 @@ Request::$foundation = RequestFoundation::createFromGlobals();
 |
 | Next we're ready to determine the application environment. This may be
 | set either via the command line options or via the mapping of URIs to
-| environments that lives in the "paths.php" file for the application and
-| is parsed. When determining the CLI environment, the "--env" CLI option
-| overrides the mapping in "paths.php".
+| environments that lives in the "paths.php" file for the application
+| and is parsed. When determining the CLI environment, the "--env"
+| CLI option overrides the mapping in "paths.php".
 |
 */
+
 if (Request::cli())
 {
 	$environment = get_cli_option('env');
 
-	if (! isset($environment)) {
+	if ( ! isset($environment))
+	{
 		$environment = Request::detect_env($environments, gethostname());
 	}
 }

+ 3 - 0
laravel/documentation/changes.md

@@ -34,6 +34,9 @@
 
 - Overall improvement of Postgres support.
 - Fix issue in SQL Server Schema grammar.
+- Fix issue with eager loading and `first` or `find`.
+- Fix bug causing parameters to not be passed to `IoC::resolve`.
+- Allow the specification of hostnames in environment setup.
 
 <a name="upgrade-3.2.2"></a>
 ## Upgrading From 3.2.1