Lndj\Lcrawl::setTimeOut PHP Method

setTimeOut() public method

Set the Timeout.
public setTimeOut ( type $time ) : type
$time type
return type
    public function setTimeOut($time)
    {
        if (!is_numeric($time)) {
            //Should throw a Exception?
            renturn;
        }
        $this->headers['timeout'] = $time;
        return $this;
    }