From 3287e6e1873a433754c8a1e268e91cdff77b9de6 Mon Sep 17 00:00:00 2001 From: Mark Walling Date: Wed, 3 Jan 2018 08:45:16 -0500 Subject: [PATCH] Revert "Fix URL::forceSchema to forceScheme (#730)" (#744) This reverts commit 8a96eac41afd81a0f94cf59ba29319466c1d205f. --- routes/web.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/web.php b/routes/web.php index c374ab096f3..5779f98ad01 100644 --- a/routes/web.php +++ b/routes/web.php @@ -11,7 +11,7 @@ */ if (App::environment('production')) { - URL::forceSchema('https'); + URL::forceScheme('https'); } Route::get('/', 'Auth\LoginController@showLoginForm')->name('login');