Add note to upgrade guide.

This commit is contained in:
Taylor Otwell 2013-11-02 19:46:46 -05:00
parent 0103a698d7
commit 509b43ba80
1 changed files with 1 additions and 0 deletions

View File

@ -8,3 +8,4 @@ ## Upgrading From 4.0 to 4.1
- Remove call to `redirectIfTrailingSlash` in `bootstrap/start.php` file. - Remove call to `redirectIfTrailingSlash` in `bootstrap/start.php` file.
- Edit `app/config/app.php`; in `aliases` change `'Controller' => 'Illuminate\Routing\Controllers\Controller',` - Edit `app/config/app.php`; in `aliases` change `'Controller' => 'Illuminate\Routing\Controllers\Controller',`
to use `Illuminate\Routing\Controller` to use `Illuminate\Routing\Controller`
- If you are overriding missingMethod in your controllers, add $method as the first parameter.