mirror of
https://github.com/elyby/accounts.git
synced 2024-11-01 00:13:06 +05:30
11 lines
193 B
PHP
11 lines
193 B
PHP
|
<?php
|
||
|
namespace api\components\OAuth2\Entities;
|
||
|
|
||
|
class ScopeEntity extends \League\OAuth2\Server\Entity\ScopeEntity {
|
||
|
|
||
|
public function setId(string $id) {
|
||
|
$this->id = $id;
|
||
|
}
|
||
|
|
||
|
}
|