AbstractScreening   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Lyal\Checkr\Entities\Screenings;
4
5
use Lyal\Checkr\Client;
6
use Lyal\Checkr\Entities\AbstractEntity;
7
8
abstract class AbstractScreening extends AbstractEntity
9
{
10
    /**
11
     * AbstractScreening constructor.
12
     *
13
     * @param array|null|string $values
14
     * @param Client|null       $client
15
     */
16
    public function __construct($values, Client $client = null)
17
    {
18
        $this->checkFields = false;
19
        parent::__construct($values, $client);
20
    }
21
}
22