PATH:
home
/
lab2454c
/
costbloc.com
/
vendor
/
league
/
oauth2-server
/
src
/
Repositories
<?php /** * @author Alex Bilbie <hello@alexbilbie.com> * @copyright Copyright (c) Alex Bilbie * @license http://mit-license.org/ * * @link https://github.com/thephpleague/oauth2-server */ namespace League\OAuth2\Server\Repositories; use League\OAuth2\Server\Entities\ClientEntityInterface; /** * Client storage interface. */ interface ClientRepositoryInterface extends RepositoryInterface { /** * Get a client. * * @param string $clientIdentifier The client's identifier * * @return ClientEntityInterface|null */ public function getClientEntity($clientIdentifier); /** * Validate a client's secret. * * @param string $clientIdentifier The client's identifier * @param null|string $clientSecret The client's secret (if sent) * @param null|string $grantType The type of grant the client is using (if sent) * * @return bool */ public function validateClient($clientIdentifier, $clientSecret, $grantType); }
[-] ClientRepositoryInterface.php
[edit]
[+]
..
[-] UserRepositoryInterface.php
[edit]
[-] AuthCodeRepositoryInterface.php
[edit]
[-] RepositoryInterface.php
[edit]
[-] ScopeRepositoryInterface.php
[edit]
[-] RefreshTokenRepositoryInterface.php
[edit]
[-] AccessTokenRepositoryInterface.php
[edit]