| Total Complexity | 7 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | class NoneResponseType implements ResponseTypeInterface |
||
| 20 | { |
||
| 21 | public function getResponseType(): string |
||
| 22 | { |
||
| 23 | return 'none'; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param ServerRequestInterface $request |
||
| 28 | * @param ResourceOwnerInterface $resourceOwner |
||
| 29 | * @param RegisteredClient $client |
||
| 30 | * @param array|null $scope |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function handle(ServerRequestInterface $request, ResourceOwnerInterface $resourceOwner, |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getDefaultResponseMode(): string |
||
| 40 | { |
||
| 41 | return self::RESPONSE_MODE_QUERY; |
||
| 42 | } |
||
| 43 | |||
| 44 | public function isImplicit(): bool |
||
| 45 | { |
||
| 46 | return false; |
||
| 47 | } |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @param ServerRequestInterface $request |
||
| 51 | * @throws OAuthException |
||
| 52 | */ |
||
| 53 | public function verifyRequest(ServerRequestInterface $request): void |
||
| 54 | { |
||
| 55 | } |
||
| 56 | |||
| 57 | public function requireTLS(): bool |
||
| 60 | } |
||
| 61 | |||
| 62 | public function isMultiValuedResponseTypeSupported() : bool { |
||
| 64 | } |
||
| 65 | } |