mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 16:21:08 +05:30
19 lines
421 B
PHP
19 lines
421 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace api\components\OAuth2\Entities;
|
|
|
|
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 EntityTrait;
|
|
use ScopeTrait;
|
|
|
|
public function __construct(string $id) {
|
|
$this->identifier = $id;
|
|
}
|
|
|
|
}
|