| 1 | <?php |
||
| 12 | trait ClientTrait |
||
| 13 | { |
||
| 14 | protected $name; |
||
| 15 | |||
| 16 | protected $redirectUri; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Get the client's name. |
||
| 20 | * |
||
| 21 | * @return string |
||
| 22 | * @codeCoverageIgnore |
||
| 23 | */ |
||
| 24 | public function getName() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Returns the registered redirect URI (as a string). |
||
| 31 | * |
||
| 32 | * Alternatively return an indexed array of redirect URIs. |
||
| 33 | * |
||
| 34 | * @return string|string[] |
||
| 35 | */ |
||
| 36 | public function getRedirectUri() |
||
| 40 | } |
||
| 41 |