Completed
Push — master ( c0ab05...81ba2c )
by Freek
01:11
created

CertificateHealth   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 28
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace OhDear\PhpSdk\Resources;
4
5
class CertificateHealth extends ApiResource
6
{
7
    /**
8
     * The details of the certificate that was found for the site.
9
     *
10
     * @var array
11
     */
12
    public $certificateDetails;
13
14
    /**
15
     * An array of checks that were performed on the certificate.
16
     *
17
     * @var array
18
     */
19
    public $certificateChecks;
20
21
    /**
22
     * An array with all the issuer names in the chain of the certificate.
23
     *
24
     * @var array
25
     */
26
    public $certificateChainIssues;
27
28
    public function __construct(array $attributes, $ohDear = null)
29
    {
30
        parent::__construct($attributes, $ohDear);
31
    }
32
}
33