| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | public function __construct($method, $url, array $headers = array(), $body = null, $opt = null) |
||
| 32 | { |
||
| 33 | $this->method = strtoupper($method); |
||
| 34 | $this->url = $url; |
||
| 35 | $this->headers = $headers; |
||
| 36 | $this->body = $body; |
||
| 37 | if ($opt === null) { |
||
| 38 | $opt = new RequestOptions(); |
||
| 39 | } |
||
| 40 | $this->opt = $opt; |
||
| 41 | } |
||
| 43 |