blob: 844600a7a256fe7fe1c40884723aaf2dbdf8260a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
namespace Studip\OAuth2\Bridge;
use League\OAuth2\Server\Entities\ScopeEntityInterface;
use League\OAuth2\Server\Entities\Traits\EntityTrait;
use League\OAuth2\Server\Entities\Traits\ScopeTrait;
class ScopeEntity implements ScopeEntityInterface
{
use ScopeTrait;
use EntityTrait;
public function __construct(string $identifier)
{
$this->setIdentifier($identifier);
}
}
|