LeagueWrap\Client::setTimeout PHP 메소드

setTimeout() 공개 메소드

Set a timeout in seconds for how long we will wait for the server to respond. If the server does not respond within the set number of seconds we throw an exception.
public setTimeout ( integer $seconds ) : void
$seconds integer
리턴 void
    public function setTimeout($seconds)
    {
        $this->timeout = floatval($seconds);
    }