Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
52 | public function setTimeouts( |
||
53 | int $overall = 3500, |
||
54 | int $lookup = 1000, |
||
55 | int $connect = 500, |
||
56 | int $send = 1000, |
||
57 | int $wait = 2000 |
||
58 | ) : self { |
||
59 | $this->ttOverall = $overall; |
||
60 | |||
61 | $this->ttLookup = $lookup; |
||
62 | $this->ttConnect = $connect; |
||
63 | |||
64 | $this->ttSend = $send; |
||
65 | $this->ttWait = $wait; |
||
66 | |||
67 | return $this; |
||
68 | } |
||
70 |