1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-04 23:53:17 +05:30

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;
}
}