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

Verification::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 16
c 0
b 0
f 0
rs 9.4285
cc 1
eloc 9
nc 1
nop 2
1
<?php
2
namespace Lyal\Checkr\Entities\Resources;
3
4
5
class Verification extends AbstractResource
6
{
7
    public function __construct($values = NULL, $client = NULL)
8
    {
9
10
        $this->setFields(
11
            [
12
                'id',
13
                'object',
14
                'uri',
15
                'created_at',
16
                'completed_at',
17
                'verification_type',
18
                'verification_url'
19
            ]
20
        );
21
22
        parent::__construct($values, $client);
23
24
    }
25
26
}