Test Failed
Push — master ( 6bff04...e0da10 )
by Lyal
02:14
created

ApiTestCase   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
dl 0
loc 12
c 0
b 0
f 0
rs 10
1
<?php
2
3
4
namespace Tests;
5
6
7
use Lyal\Checkr\Client;
8
9
class ApiTestCase extends TestCase
10
{
11
    private $client;
12
13
    public function setUp()
14
    {
15
        $this->client = new Client(getenv('checkr_test_key'));
16
    }
17
18
    public function getClient()
19
    {
20
        return $this->client;
21
    }
22
}