| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class Issuer implements IssuerInterface |
||
| 11 | { |
||
| 12 | /** @var IssuerMetadataInterface */ |
||
| 13 | private $metadata; |
||
| 14 | |||
| 15 | /** @var JwksProviderInterface */ |
||
| 16 | private $jwksProvider; |
||
| 17 | |||
| 18 | 1 | public function __construct(IssuerMetadataInterface $metadata, JwksProviderInterface $jwksProvider) |
|
| 19 | { |
||
| 20 | 1 | $this->metadata = $metadata; |
|
| 21 | 1 | $this->jwksProvider = $jwksProvider; |
|
| 22 | 1 | } |
|
| 23 | |||
| 24 | 1 | public function getMetadata(): IssuerMetadataInterface |
|
| 27 | } |
||
| 28 | |||
| 29 | 1 | public function getJwksProvider(): JwksProviderInterface |
|
| 34 |