Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F12944360
AuthController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
AuthController.php
View Options
<?php
namespace
AuthGrove\Http\Controllers\Auth
;
use
AuthGrove\Http\Controllers\Controller
;
use
Illuminate\Contracts\Auth\Guard
;
use
Illuminate\Contracts\Auth\Registrar
;
use
Illuminate\Contracts\Auth\PasswordBroker
;
use
AuthGrove\Services\AuthenticatesAndRegistersUsers
;
use
AuthGrove\Services\ResetsPasswords
;
class
AuthController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
|--------------------------------------------------------------------------
|
| This controller handles the registration of new users, as well as the
| authentication of existing users. By default, this controller uses
| a simple trait to add these behaviors. Why don't you explore it?
|
*/
use
AuthenticatesAndRegistersUsers
;
use
ResetsPasswords
;
/**
* Create a new authentication controller instance.
*
* @param \Illuminate\Contracts\Auth\Guard $auth
* @param \Illuminate\Contracts\Auth\Registrar $registrar
* @param \Illuminate\Contracts\Auth\PasswordBroker $passwords
* @return void
*/
public
function
__construct
(
Guard
$auth
,
Registrar
$registrar
,
PasswordBroker
$passwords
)
{
$this
->
auth
=
$auth
;
$this
->
registrar
=
$registrar
;
$this
->
passwords
=
$passwords
;
$this
->
middleware
(
'guest'
,
[
'except'
=>
'getLogout'
]);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Nov 18, 17:16 (22 h, 40 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3176621
Default Alt Text
AuthController.php (1 KB)
Attached To
Mode
rGROVE Auth Grove
Attached
Detach File
Event Timeline
Log In to Comment