Skip to content

Commit

Permalink
Return id field
Browse files Browse the repository at this point in the history
  • Loading branch information
markitosgv committed Jul 1, 2019
1 parent 60592e7 commit ff60ce3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Document/RefreshToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ class RefreshToken extends AbstractRefreshToken
*/
public function getId()
{
$this->id;
return $this->id;
}
}
2 changes: 1 addition & 1 deletion Entity/RefreshToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ class RefreshToken extends AbstractRefreshToken
*/
public function getId()
{
$this->id;
return $this->id;
}
}
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ class JwtRefreshToken extends AbstractRefreshToken
*/
public function getId()
{
$this->id;
return $this->id;
}
}
```
Expand Down Expand Up @@ -308,7 +308,7 @@ class JwtRefreshToken extends AbstractRefreshToken
*/
public function getId()
{
$this->id;
return $this->id;
}
}
```
Expand Down

0 comments on commit ff60ce3

Please sign in to comment.