Passed
Pull Request — master (#56)
by
unknown
02:23
created

ApiTestCase::makeRequest()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 28

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 28
rs 9.472
c 0
b 0
f 0
cc 1
nc 1
nop 6
1
<?php
2
3
namespace ByJG\ApiTools;
4
5
use ByJG\ApiTools\Base\BaseTestCase;
6
use GuzzleHttp\GuzzleException;
7
use PHPUnit\Framework\TestCase;
8
9
abstract class ApiTestCase extends TestCase
10
{
11
   use AssertRequestAgainstSchema;
12
}
13