1 | <?php |
||
8 | class Client implements ClientEntityInterface |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | protected $name; |
||
15 | |||
16 | /** |
||
17 | * @var string|string[] |
||
18 | */ |
||
19 | protected $redirectUri; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $identifier; |
||
25 | |||
26 | /** |
||
27 | * @return mixed |
||
28 | */ |
||
29 | public function getIdentifier() |
||
33 | |||
34 | /** |
||
35 | * @param mixed $identifier |
||
36 | */ |
||
37 | public function setIdentifier($identifier) |
||
41 | |||
42 | /** |
||
43 | * Get the client's name. |
||
44 | * |
||
45 | * @return string |
||
46 | * @codeCoverageIgnore |
||
47 | */ |
||
48 | public function getName() |
||
52 | |||
53 | /** |
||
54 | * Returns the registered redirect URI (as a string). |
||
55 | * |
||
56 | * Alternatively return an indexed array of redirect URIs. |
||
57 | * |
||
58 | * @return string|string[] |
||
59 | */ |
||
60 | public function getRedirectUri() |
||
64 | } |