1 | <?php |
||
9 | class ClientEntity implements ClientEntityInterface |
||
10 | { |
||
11 | use ClientTrait, EntityTrait; |
||
12 | |||
13 | /** |
||
14 | * Create a new client instance. |
||
15 | * |
||
16 | * @param string $identifier The identifier for the client. |
||
17 | * @param string $name The name of the client. |
||
18 | * @param string $redirectUri Redirect Uri. |
||
19 | */ |
||
20 | public function __construct(string $identifier, string $name, string $redirectUri) |
||
26 | } |
||
27 |