AbstractScreening::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 1 Features 0
Metric Value
eloc 2
c 3
b 1
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 2
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