Skip to content

Commit

Permalink
Merge pull request #8 from rootinc/fix-mispelling-exception
Browse files Browse the repository at this point in the history
Closes #6
  • Loading branch information
danieltjewett committed Jan 11, 2018
2 parents 80a9ff5 + c4e325a commit ef657d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Azure.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ protected function success($request, $access_token, $refresh_token, $profile)
return redirect("/");
}

protected function fail(Request $request, RequestExcpetion $e)
protected function fail(Request $request, RequestException $e)
{
return implode("", explode(PHP_EOL,$e->getMessage()));
return implode("", explode(PHP_EOL, $e->getMessage()));
}

protected function handlecallback($request, Closure $next, $access_token, $refresh_token)
Expand Down

0 comments on commit ef657d2

Please sign in to comment.