We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09bd4fb commit 32859abCopy full SHA for 32859ab
src/Client.php
@@ -186,9 +186,9 @@ public function setHost($host): void
186
* @param int|float $timeout
187
* @return Settings
188
*/
189
- public function setTimeout($timeout):Settings
+ public function setTimeout(int $timeout): Settings
190
{
191
- return $this->settings()->max_execution_time(intval($timeout));
+ return $this->settings()->max_execution_time($timeout);
192
}
193
194
/**
0 commit comments