Package   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

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