Owl\Repositories\Fluent\LoginTokenRepository::getLoginTokenById PHP Méthode

getLoginTokenById() public méthode

Get a login_token by id.
public getLoginTokenById ( $id ) : stdClass
$id int
Résultat stdClass
    public function getLoginTokenById($id)
    {
        return \DB::table($this->getTableName())->where($this->getTableName() . '.id', $id)->first();
    }