Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 85.71% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class AppleAttestationStatement extends AbstractAttestationStatement |
||
12 | { |
||
13 | public const FORMAT_ID = 'apple'; |
||
14 | |||
15 | /** |
||
16 | * @var X509Certificate[] |
||
17 | */ |
||
18 | private $certificates; |
||
19 | |||
20 | 2 | public function __construct(AttestationObject $attestationObject) |
|
43 | 2 | } |
|
44 | |||
45 | /** |
||
46 | * @return X509Certificate[] |
||
47 | */ |
||
48 | 2 | public function getCertificates(): array |
|
53 |