for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests;
use Lyal\Checkr\Client;
class ApiTestCase extends TestCase
{
private $client;
public function setUp()
$this->client = new Client(getenv('checkr_test_key'));
}
public function getClient()
return $this->client;