mirror of
https://github.com/elyby/accounts.git
synced 2024-10-31 07:53:02 +05:30
11 lines
205 B
PHP
11 lines
205 B
PHP
|
<?php
|
||
|
namespace api\components\OAuth2\Entities;
|
||
|
|
||
|
class RefreshTokenEntity extends \League\OAuth2\Server\Entity\RefreshTokenEntity {
|
||
|
|
||
|
public function isExpired() : bool {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|