Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
0cd9ee1e
Commit
0cd9ee1e
authored
Oct 15, 2014
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extend controller by default.
parent
bc593c17
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
4 deletions
+8
-4
AuthController.php
app/Http/Controllers/Auth/AuthController.php
+2
-2
PasswordController.php
app/Http/Controllers/Auth/PasswordController.php
+2
-1
HomeController.php
app/Http/Controllers/HomeController.php
+3
-1
app.php
config/app.php
+1
-0
No files found.
app/Http/Controllers/Auth/AuthController.php
View file @
0cd9ee1e
<?php
namespace
App\Http\Controllers\Auth
;
use
Illuminate\Routing\Controller
;
use
Illuminate\Contracts\Auth\Guard
;
use
App\Http\Requests\Auth\LoginRequest
;
use
App\Http\Requests\Auth\RegisterRequest
;
/**
* @Middleware("guest", except={"logout"})
*/
class
AuthController
{
class
AuthController
extends
Controller
{
/**
* The Guard implementation.
...
...
app/Http/Controllers/Auth/PasswordController.php
View file @
0cd9ee1e
<?php
namespace
App\Http\Controllers\Auth
;
use
Illuminate\Http\Request
;
use
Illuminate\Routing\Controller
;
use
Illuminate\Contracts\Auth\PasswordBroker
;
use
Symfony\Component\HttpKernel\Exception\NotFoundHttpException
;
/**
* @Middleware("guest")
*/
class
PasswordController
{
class
PasswordController
extends
Controller
{
/**
* The password broker implementation.
...
...
app/Http/Controllers/HomeController.php
View file @
0cd9ee1e
<?php
namespace
App\Http\Controllers
;
class
HomeController
{
use
Illuminate\Routing\Controller
;
class
HomeController
extends
Controller
{
/*
|--------------------------------------------------------------------------
...
...
config/app.php
View file @
0cd9ee1e
...
...
@@ -112,6 +112,7 @@ return [
'Illuminate\Auth\AuthServiceProvider'
,
'Illuminate\Cache\CacheServiceProvider'
,
'Illuminate\Foundation\Providers\ConsoleSupportServiceProvider'
,
'Illuminate\Routing\ControllerServiceProvider'
,
'Illuminate\Cookie\CookieServiceProvider'
,
'Illuminate\Database\DatabaseServiceProvider'
,
'Illuminate\Encryption\EncryptionServiceProvider'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment