| 1 | <?php |
||
| 22 | class ClientConfigurationRouteRule extends Base |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var RouterInterface |
||
| 26 | */ |
||
| 27 | private $router; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * ClientRegistrationManagementRule constructor. |
||
| 31 | * |
||
| 32 | * @param RouterInterface $router |
||
| 33 | */ |
||
| 34 | public function __construct(RouterInterface $router) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | protected function getRegistrationClientUri(ClientId $clientId): string |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | protected function generateRegistrationAccessToken(): string |
||
| 56 | } |
||
| 57 |