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

Verification   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 18
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 16 1
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
}