| 1 | <?php |
||
| 20 | abstract class ClientConfigurationRouteRule implements Rule |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * {@inheritdoc} |
||
| 24 | */ |
||
| 25 | public function handle(ClientId $clientId, DataBag $commandParameters, DataBag $validatedParameters, callable $next): DataBag |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param ClientId $clientId |
||
| 35 | * |
||
| 36 | * @return string |
||
| 37 | */ |
||
| 38 | abstract protected function getRegistrationClientUri(ClientId $clientId): string; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @return string |
||
| 42 | */ |
||
| 43 | abstract protected function generateRegistrationAccessToken(): string; |
||
| 44 | } |
||
| 45 |