Candidate   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Lyal\Checkr\Entities\Resources;
4
5
use Lyal\Checkr\Client;
6
use Lyal\Checkr\Traits\Creatable;
7
use Lyal\Checkr\Traits\Deleteable;
8
use Lyal\Checkr\Traits\Listable;
9
use Lyal\Checkr\Traits\Saveable;
10
11
class Candidate extends AbstractResource
12
{
13
    use Creatable, Saveable, Listable, Deleteable;
0 ignored issues
show
introduced by
The trait Lyal\Checkr\Traits\Listable requires some properties which are not provided by Lyal\Checkr\Entities\Resources\Candidate: $useCollections, $data
Loading history...
14
15
    /**
16
     * Candidate constructor.
17
     *
18
     * @param null|string|array $values
19
     * @param null|Client $client
20
     */
21
    public function __construct($values = null, Client $client = null)
22
    {
23
        parent::__construct($values, $client);
24
    }
25
}
26