From 4cb7482e2fb60dc67c631a488de7f76c56c173c3 Mon Sep 17 00:00:00 2001 From: James Mills Date: Mon, 4 Nov 2013 05:50:19 +0000 Subject: [PATCH] Update upgrade.md Quick reminder to change the path in the BaseController to match the change to the alias. --- upgrade.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/upgrade.md b/upgrade.md index 139a266b..21b00925 100644 --- a/upgrade.md +++ b/upgrade.md @@ -8,4 +8,6 @@ ## Upgrading From 4.0 to 4.1 - Remove call to `redirectIfTrailingSlash` in `bootstrap/start.php` file. - Edit `app/config/app.php`; in `aliases` change `'Controller' => 'Illuminate\Routing\Controllers\Controller',` to use `Illuminate\Routing\Controller` -- If you are overriding missingMethod in your controllers, add $method as the first parameter. \ No newline at end of file +- Edit `app/controllers/BaseController.php` change `use Illuminate\Routing\Controllers\Controller;` to `use Illuminate\Routing\Controller; +` +- If you are overriding missingMethod in your controllers, add $method as the first parameter.