Geo   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 3
Bugs 1 Features 0
Metric Value
wmc 1
eloc 6
c 3
b 1
f 0
dl 0
loc 18
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 8 1
1
<?php
2
3
namespace Lyal\Checkr\Entities\Resources;
4
5
use Lyal\Checkr\Client;
6
use Lyal\Checkr\Traits\Deleteable;
7
8
class Geo extends AbstractResource
9
{
10
    use Deleteable;
11
12
    /**
13
     * Geo constructor.
14
     *
15
     * @param null|string|array $values
16
     * @param null|Client $client
17
     */
18
    public function __construct($values = null, Client $client = null)
19
    {
20
        $this->setHidden([
21
            'candidate_id',
22
            'report_id',
23
        ]);
24
25
        parent::__construct($values, $client);
26
    }
27
}
28