Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
27 | public function __construct( |
||
28 | $name, |
||
29 | $url, |
||
30 | $method, |
||
31 | array $headers, |
||
32 | $timeout, |
||
33 | $expectedStatus |
||
34 | ) { |
||
35 | $this->name = $name; |
||
36 | $this->url = $url; |
||
37 | $this->method = $method; |
||
38 | $this->headers = $headers; |
||
39 | $this->timeout = $timeout; |
||
40 | $this->expectedStatus = $expectedStatus; |
||
41 | } |
||
42 | |||
103 |