| Total Complexity | 5 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | abstract class Proxyable |
||
| 8 | { |
||
| 9 | private $proxy; |
||
| 10 | private $proxy_auth; |
||
| 11 | private $proxy_user_password; |
||
| 12 | |||
| 13 | protected function __construct($proxy = null, $proxy_auth = null, $proxy_user_password = null) |
||
| 14 | { |
||
| 15 | $this->proxy = $proxy; |
||
| 16 | $this->proxy_auth = $proxy_auth; |
||
| 17 | $this->proxy_user_password = $proxy_user_password; |
||
| 18 | } |
||
| 19 | |||
| 20 | protected function makeReqOpt() |
||
| 33 | } |
||
| 34 | } |
||
| 35 |