blob: a0dda5e3f4a928087152c72b1da3af8cd3aa1910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
namespace Studip\OAuth2\Bridge;
use League\OAuth2\Server\Entities\RefreshTokenEntityInterface;
use League\OAuth2\Server\Entities\Traits\EntityTrait;
use League\OAuth2\Server\Entities\Traits\RefreshTokenTrait;
class RefreshTokenEntity implements RefreshTokenEntityInterface
{
use RefreshTokenTrait;
use EntityTrait;
}
|