Conditions | 3 |
Paths | 2 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, array $headers, $body) |
||
38 | { |
||
39 | if (null !== $body && '1.0' !== $protocolVersion) { |
||
40 | $this->markTestSkipped('cURL can not send body using GET'); |
||
41 | } |
||
42 | |||
43 | parent::testSendRequestWithOutcome($uriAndOutcome, $protocolVersion, $headers, $body); |
||
44 | } |
||
46 |