Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
24 | public function __construct($url, $method, $wait = 0) |
||
25 | { |
||
26 | $this->registerOption(self::OPTION_URL); |
||
27 | $this->registerOption(self::OPTION_METHOD); |
||
28 | $this->registerOption(self::OPTION_WAIT); |
||
29 | |||
30 | $this->setOption(self::OPTION_URL, $url); |
||
31 | $this->setOption(self::OPTION_METHOD, $method); |
||
32 | $this->setOption(self::OPTION_WAIT, $wait); |
||
33 | } |
||
34 | } |
||
35 |