Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2.1481 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
31 | 2 | public function __construct( |
|
32 | IssuerMetadataInterface $metadata, |
||
33 | JWKSet $jwks, |
||
34 | ?JKUFactory $JKUFactory = null |
||
35 | ) { |
||
36 | 2 | $this->metadata = $metadata; |
|
37 | 2 | $this->jwks = $jwks; |
|
38 | 2 | $this->JKUFactory = $JKUFactory ?: new JKUFactory( |
|
39 | Psr18ClientDiscovery::find(), |
||
40 | Psr17FactoryDiscovery::findRequestFactory() |
||
41 | ); |
||
62 |