Test Failed
Push — master ( 7c4720...fd955c )
by Lyal
04:00 queued 14s
created

Report::__construct()   B

Complexity

Conditions 1
Paths 1

Size

Total Lines 37
Code Lines 34

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 37
c 0
b 0
f 0
rs 8.8571
cc 1
eloc 34
nc 1
nop 2
1
<?php
2
namespace Lyal\Checkr\Entities\Resources;
3
4
5
use Lyal\Checkr\Traits\Creatable;
6
use Lyal\Checkr\Traits\Saveable;
7
8
class Report extends AbstractResource
9
{
10
    use Creatable, Saveable;
11
12
    public function __construct($values = NULL, $client = NULL)
13
    {
14
        $this->setFields([
15
            'id',
16
            'object',
17
            'uri',
18
            'status',
19
            'created_at',
20
            'completed_at',
21
            'upgraded_at',
22
            'revised_at',
23
            'tags',
24
            'turnaround_time',
25
            'assessment',
26
            'due_time',
27
            'adjudication',
28
            'package',
29
            'tags',
30
            'candidate_id',
31
            'program_id',
32
            'ssn_trace_id',
33
            'sex_offender_search_id',
34
            'federal_criminal_search_id',
35
            'national_criminal_search_id',
36
            'global_watchlist_search_id',
37
            'county_criminal_search_ids',
38
            'personal_reference_verification_ids',
39
            'professional_reference_verification_ids',
40
            'motor_vehicle_report_id',
41
            'state_criminal_search_ids',
42
            'terrorist_watchlist_search_id',
43
            'facis_search_id',
44
            'document_ids',
45
            'geo_ids',
46
            'tags'
47
        ]);
48
        parent::__construct($values, $client);
49
50
    }
51
}
52