Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Nov 8, 2016
1 parent 3aa05eb commit db2cf50
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/Illuminate/Foundation/Auth/AuthenticatesUsers.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,16 @@ protected function validateLogin(Request $request)
}

/**
* @param Request $request
* Attempt to log the user into the application.
*
* @param Request $request
* @return bool
*/
protected function attemptLogin(Request $request)
{
$credentials = $this->credentials($request);

return $this->guard()->attempt($credentials, $request->has('remember'));
return $this->guard()->attempt(
$this->credentials($request), $request->has('remember')
);
}

/**
Expand Down

0 comments on commit db2cf50

Please sign in to comment.