App\Http\Controllers\Auth\AuthController::__construct PHP 메소드

__construct() 공개 메소드

Create a new authentication controller instance.
public __construct ( AccountRepository $repo, AuthService $authService )
$repo App\Ninja\Repositories\AccountRepository
$authService App\services\AuthService
    public function __construct(AccountRepository $repo, AuthService $authService)
    {
        $this->accountRepo = $repo;
        $this->authService = $authService;
    }