GuzzleException.php 471 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace GuzzleHttp\Exception;
  3. use Throwable;
  4. if (interface_exists(Throwable::class)) {
  5. interface GuzzleException extends Throwable
  6. {
  7. }
  8. } else {
  9. /**
  10. * @method string getMessage()
  11. * @method \Throwable|null getPrevious()
  12. * @method mixed getCode()
  13. * @method string getFile()
  14. * @method int getLine()
  15. * @method array getTrace()
  16. * @method string getTraceAsString()
  17. */
  18. interface GuzzleException
  19. {
  20. }
  21. }