| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function __construct(string $url, string $method, int $wait = 0) |
||
| 23 | { |
||
| 24 | $this->registerOption(self::OPTION_URL); |
||
| 25 | $this->registerOption(self::OPTION_METHOD); |
||
| 26 | $this->registerOption(self::OPTION_WAIT); |
||
| 27 | |||
| 28 | $this->setOption(self::OPTION_URL, $url); |
||
| 29 | $this->setOption(self::OPTION_METHOD, $method); |
||
| 30 | $this->setOption(self::OPTION_WAIT, $wait); |
||
| 31 | } |
||
| 38 |