| 1 | <?php |
||
| 10 | class Client extends AbstractStorage implements ClientInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var array[] |
||
| 14 | */ |
||
| 15 | private $clients; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param array[] $clients |
||
| 19 | */ |
||
| 20 | public function __construct(array $clients) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * {@InheritDoc} |
||
| 27 | */ |
||
| 28 | public function get($clientId, $clientSecret = null, $redirectUri = null, $grantType = null) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * {@InheritDoc} |
||
| 43 | */ |
||
| 44 | public function getBySession(SessionEntity $session) |
||
| 48 | } |
||
| 49 |