mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-02-11 08:48:55 +00:00
27 lines
546 B
PHP
27 lines
546 B
PHP
<?php
|
|
namespace Api\V8\OAuth2\Entity;
|
|
|
|
use League\OAuth2\Server\Entities\ClientEntityInterface;
|
|
use League\OAuth2\Server\Entities\Traits\ClientTrait;
|
|
use League\OAuth2\Server\Entities\Traits\EntityTrait;
|
|
|
|
class ClientEntity implements ClientEntityInterface
|
|
{
|
|
use EntityTrait, ClientTrait;
|
|
|
|
/**
|
|
* @param string $name
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
|
|
/**
|
|
* @param string $uri
|
|
*/
|
|
public function setRedirectUri($uri)
|
|
{
|
|
$this->redirectUri = $uri;
|
|
}
|
|
}
|