| 1 | <?php |
||
| 25 | final class SelectAccountHandler implements SelectAccountHandlerInterface |
||
| 26 | { |
||
| 27 | private $responseFactory; |
||
| 28 | |||
| 29 | public function __construct(ResponseFactory $responseFactory) |
||
| 33 | |||
| 34 | public function prepare(ServerRequestInterface $serverRequest, string $authorizationId, AuthorizationRequest $authorizationRequest): void |
||
| 38 | |||
| 39 | public function hasBeenProcessed(ServerRequestInterface $serverRequest, string $authorizationId, AuthorizationRequest $authorizationRequest): bool |
||
| 43 | |||
| 44 | public function isValid(ServerRequestInterface $serverRequest, string $authorizationId, AuthorizationRequest $authorizationRequest): bool |
||
| 48 | |||
| 49 | public function process(ServerRequestInterface $serverRequest, string $authorizationId, AuthorizationRequest $authorizationRequest): ResponseInterface |
||
| 53 | } |
||
| 54 |