8000 cleaning up. · laravel/laravel@e12b554 · GitHub
[go: up one dir, main page]

Skip to content

Commit e12b554

Browse files
committed
cleaning up.
1 parent d9c0dc0 commit e12b554

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

laravel/core.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,16 +149,18 @@
149149
|
150150
| Next we're ready to determine the application environment. This may be
151151
| set either via the command line options or via the mapping of URIs to
152-
| environments that lives in the "paths.php" file for the application and
153-
| is parsed. When determining the CLI environment, the "--env" CLI option
154-
| overrides the mapping in "paths.php".
152+
| environments that lives in the "paths.php" file for the application
153+
| and is parsed. When determining the CLI environment, the "--env"
154+
| CLI option overrides the mapping in "paths.php".
155155
|
156156
*/
157+
157158
if (Request::cli())
158159
{
159160
$environment = get_cli_option('env');
160161

161-
if (! isset($environment)) {
162+
if ( ! isset($environment))
163+
{
162164
$environment = Request::detect_env($environments, gethostname());
163165
}
164166
}

laravel/documentation/changes.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434

3535
- Overall improvement of Postgres support.
3636
- Fix issue in SQL Server Schema grammar.
37+
- Fix issue with eager loading and `first` or `find`.
38+
- Fix bug causing parameters to not be passed to `IoC::resolve`.
39+
- Allow the specification of hostnames in environment setup.
3740

3841
<a name="upgrade-3.2.2"></a>
3942
## Upgrading From 3.2.1

0 commit comments

Comments
 (0)
0