1 | <?php |
||
7 | class ClientMemoryStorage implements ClientInterface |
||
8 | { |
||
9 | private $clients; |
||
10 | |||
11 | public function __construct(Array $clients) |
||
15 | |||
16 | /** |
||
17 | * @inherit |
||
18 | */ |
||
19 | public function getClientDetails($client_id) |
||
35 | |||
36 | /** |
||
37 | * @inherit |
||
38 | */ |
||
39 | public function getClientScope($client_id) |
||
47 | |||
48 | /** |
||
49 | * @inherit |
||
50 | */ |
||
51 | public function checkRestrictedGrantType($client_id, $grant_type) |
||
61 | } |
||
62 |