Skip to content

Commit

Permalink
update token fetching
Browse files Browse the repository at this point in the history
moeen-basra committed Jan 7, 2017
1 parent a185c91 commit 936afcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TokenRepository.php
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ class TokenRepository
*/
public function find($id)
{
return Token::find($id);
return Token::where('id', $id)->first();
}

/**

0 comments on commit 936afcf

Please sign in to comment.