mirror of
https://github.com/elyby/oauth2-server.git
synced 2024-11-23 05:33:06 +05:30
Added helper methods
This commit is contained in:
parent
3f6e91575d
commit
651709b70f
@ -9,4 +9,14 @@ use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
||||
class ClientEntity implements ClientEntityInterface
|
||||
{
|
||||
use EntityTrait, ClientTrait;
|
||||
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
|
||||
public function setRedirectUri($uri)
|
||||
{
|
||||
$this->redirectUri = $uri;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user