Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function __construct() |
||
24 | { |
||
25 | $this->addSubSource(new AuthorizationEndpointSource()); |
||
26 | $this->addSubSource(new ClientConfigurationSource()); |
||
27 | $this->addSubSource(new ClientRegistrationSource()); |
||
28 | $this->addSubSource(new TokenEndpointSource()); |
||
29 | $this->addSubSource(new TokenIntrospectionEndpointSource()); |
||
30 | $this->addSubSource(new TokenRevocationEndpointSource()); |
||
31 | $this->addSubSource(new JwksUriEndpointSource()); |
||
32 | $this->addSubSource(new IssuerDiscoveryEndpointSource()); |
||
33 | $this->addSubSource(new SessionManagementEndpointSource()); |
||
34 | $this->addSubSource(new MetadataEndpointSource()); |
||
35 | } |
||
36 | |||
45 |