Rename a few things.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php namespace App\Http\Controllers\Auth;
|
||||
|
||||
use Illuminate\Contracts\Auth\Authenticator;
|
||||
use Illuminate\Contracts\Auth\Guard;
|
||||
|
||||
use App\Http\Requests\Auth\LoginRequest;
|
||||
use App\Http\Requests\Auth\RegisterRequest;
|
||||
@@ -12,19 +12,19 @@ use App\Http\Requests\Auth\RegisterRequest;
|
||||
class AuthController {
|
||||
|
||||
/**
|
||||
* The authenticator implementation.
|
||||
* The Guard implementation.
|
||||
*
|
||||
* @var Authenticator
|
||||
* @var Guard
|
||||
*/
|
||||
protected $auth;
|
||||
|
||||
/**
|
||||
* Create a new authentication controller instance.
|
||||
*
|
||||
* @param Authenticator $auth
|
||||
* @param Guard $auth
|
||||
* @return void
|
||||
*/
|
||||
public function __construct(Authenticator $auth)
|
||||
public function __construct(Guard $auth)
|
||||
{
|
||||
$this->auth = $auth;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user