From d2e2c1c05ffc810827624551a618fe64bc2f1c59 Mon Sep 17 00:00:00 2001 From: snipe Date: Tue, 19 Dec 2017 22:14:51 -0800 Subject: [PATCH] Stub and 404 registration routes --- app/Http/Controllers/Auth/RegisterController.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index 3649480434..146974df96 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -12,4 +12,12 @@ class RegisterController extends Controller { $this->middleware('guest'); } + + public function showRegistrationForm() { + abort(404,'Page not found'); + } + + public function register() { + abort(404,'Page not found'); + } }