Report::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 3
Bugs 0 Features 0
Metric Value
eloc 1
c 3
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 2
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\Saveable;
8
9
class Report extends AbstractResource
10
{
11
    use Creatable, Saveable;
12
13
    /**
14
     * Report constructor.
15
     *
16
     * @param null|string|array $values
17
     * @param null|Client $client
18
     */
19
    public function __construct($values = null, Client $client = null)
20
    {
21
        parent::__construct($values, $client);
22
    }
23
}
24