File: /var/www/html/punjabcabs/vendor/laravel/passport/src/TokenRepository.php
<?php
namespace Laravel\Passport;
use Carbon\Carbon;
use Illuminate\Database\Eloquent\Model;
class TokenRepository
{
/**
* Get a token by the given ID.
*
* @param string $id
* @return Token
*/
public function find($id)
{
return Token::find($id);
}
/**
* Store the given token instance.
*
* @param Token $token
* @return void
*/
public function save($token)
{
$token->save();
}
/**
* Find a valid token for the given user and client.
*
* @param Model $userId
* @param Client $client
* @return Token|null
*/
public function findValidToken($user, $client)
{
return $client->tokens()
->whereUserId($user->id)
->whereRevoked(0)
->where('expires_at', '>', Carbon::now())
->latest('expires_at')
->first();
}
/**
* Revoke all of the access tokens for a given user and client.
*
* @deprecated since 1.0. Listen to Passport events on token creation instead.
*
* @param mixed $clientId
* @param mixed $userId
* @param bool $prune
* @return void
*/
public function revokeOtherAccessTokens($clientId, $userId, $except = null, $prune = false)
{
//
}
}