diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php b/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php new file mode 100644 index 0000000..27b2722 --- /dev/null +++ b/vendor/guzzlehttp/guzzle/src/Exception/GuzzleException.php @@ -0,0 +1,23 @@ +<?php +namespace GuzzleHttp\Exception; + +use Throwable; + +if (interface_exists(Throwable::class)) { + interface GuzzleException extends Throwable + { + } +} else { + /** + * @method string getMessage() + * @method \Throwable|null getPrevious() + * @method mixed getCode() + * @method string getFile() + * @method int getLine() + * @method array getTrace() + * @method string getTraceAsString() + */ + interface GuzzleException + { + } +} |