| 1 | <?php |
||
| 8 | class Client |
||
| 9 | { |
||
| 10 | private $id; |
||
| 11 | private $secret; |
||
| 12 | private $redirectUris = []; |
||
| 13 | private $allowedGrantTypes = []; |
||
| 14 | |||
| 15 | public function __construct($id, $secret, array $redirectUris = [], array $allowedGrantTypes = []) |
||
| 22 | |||
| 23 | public function getId() |
||
| 27 | |||
| 28 | public function getSecret() |
||
| 32 | |||
| 33 | public function getRedirectUris() |
||
| 37 | |||
| 38 | public function getAllowedGrantTypes() |
||
| 42 | } |
||
| 43 |