mirror of
https://github.com/elyby/accounts.git
synced 2024-11-03 01:13:23 +05:30
18 lines
250 B
PHP
18 lines
250 B
PHP
|
<?php
|
||
|
namespace api\components\User;
|
||
|
|
||
|
use Emarref\Jwt\Claim\AbstractClaim;
|
||
|
|
||
|
class SessionIdClaim extends AbstractClaim {
|
||
|
|
||
|
const NAME = 'sid';
|
||
|
|
||
|
/**
|
||
|
* @inheritdoc
|
||
|
*/
|
||
|
public function getName() {
|
||
|
return self::NAME;
|
||
|
}
|
||
|
|
||
|
}
|