I have a use case where I want to add a timeout. Could I get some ideas or suggestions how I could implement that? ``` php // Guzzle6 example to replace $client = new Client(); $client->request('GET', 'http://example.com', ['timeout' => 1]); ```