Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types = 1); |
||
7 | class CurlTest extends TestCase |
||
8 | { |
||
9 | /** @var Curl */ |
||
10 | private $curl; |
||
11 | |||
12 | /** @var string */ |
||
13 | private $postUrl; |
||
14 | |||
15 | /** @var array */ |
||
16 | private $headers; |
||
17 | |||
18 | /** @var array */ |
||
19 | private $payload; |
||
20 | |||
21 | /** @var int */ |
||
22 | private $timeout; |
||
23 | |||
24 | protected function setUp(): void |
||
35 | ); |
||
36 | } |
||
37 | |||
38 | public function testMissing() |
||
43 |