Skip to content

Commit 8faa6cf

Browse files
committed
Typo fix : Added a semicolon
Just added a missing semicolon
1 parent fc37daf commit 8faa6cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Route::get('/oauth/authorize', array('before' => 'check-authorization-params|aut
9999
Route::post('/oauth/authorize', array('before' => 'check-authorization-params|auth|csrf', function()
100100
{
101101
// get the data from the check-authorization-params filter
102-
$params = Session::get('authorize-params')
102+
$params = Session::get('authorize-params');
103103

104104
// get the user id
105105
$params['user_id'] = Auth::user()->id;

0 commit comments

Comments
 (0)