Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | 5 | public function __construct($url, $curl = null) |
|
14 | { |
||
15 | 5 | $this->curl = $curl ? $curl : curl_init(); |
|
16 | 5 | curl_setopt($this->curl, CURLOPT_URL, $url); |
|
17 | |||
18 | 5 | curl_setopt($this->curl, CURLOPT_SSL_VERIFYPEER, false); |
|
19 | 5 | curl_setopt($this->curl, CURLOPT_TIMEOUT, 15); |
|
20 | 5 | curl_setopt($this->curl, CURLOPT_RETURNTRANSFER, true); |
|
21 | 5 | } |
|
22 | |||
59 |