1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-11 10:49:10 +05:30

11 lines
193 B
PHP
Raw Normal View History

<?php
namespace api\components\OAuth2\Entities;
class ScopeEntity extends \League\OAuth2\Server\Entity\ScopeEntity {
public function setId(string $id) {
$this->id = $id;
}
}