| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 32 | public function __construct( |
||
| 33 | $protocolVersion, |
||
| 34 | $method, |
||
| 35 | $url, |
||
| 36 | array $headers = array(), |
||
| 37 | $content = null |
||
| 38 | ) { |
||
| 39 | $this->protocolVersion = $protocolVersion; |
||
| 40 | $this->method = strtoupper($method); |
||
| 41 | $this->url = new Url($url); |
||
| 42 | $this->headers = $headers; |
||
| 43 | $this->content = $content; |
||
| 44 | } |
||
| 45 | |||
| 82 |