### Issue Summary According to [composer.json](https://github.com/sendgrid/php-http-client/blob/master/composer.json#L19), this library supports PHP version 5.6 and greater. During review, my IDE warned that `Throwable` is used in file [InvalidRequest](https://github.com/sendgrid/php-http-client/blob/master/lib/Exception/InvalidRequest.php#L8). This interface is available since PHP 7.0. Solution: bump PHP version requirement to '>=7.x' or replace `Throwable` using `Exception`. ### Technical details: * php-http-client version: current master (according to composer.lock of other project: 3.10.6 / 2020-04-29T19:42:26+00:00) * php version: 7.1 (compatible version for configured phpunit)