PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Traits
/
Editing: ManagesExceptions.php
<?php declare(strict_types=1); namespace Saloon\Traits; use Throwable; use Saloon\Http\Response; trait ManagesExceptions { /** * Determine if the request has failed. */ public function hasRequestFailed(Response $response): ?bool { return null; } /** * Get the request exception. */ public function getRequestException(Response $response, ?Throwable $senderException): ?Throwable { return null; } /** * Determine if we should throw an exception if the `$response->throw()` is * used, or when the `AlwaysThrowOnErrors` trait is used. */ public function shouldThrowRequestException(Response $response): bool { return $response->failed(); } }
SAVE
CANCEL