diff --git a/config/saloon.php b/config/saloon.php index c9b9e3a..6ca6f0b 100644 --- a/config/saloon.php +++ b/config/saloon.php @@ -2,7 +2,7 @@ declare(strict_types=1); -use Saloon\Http\Senders\GuzzleSender; +use Saloon\Laravel\Http\Senders\GuzzleSender; return [ diff --git a/src/Http/Senders/GuzzleSender.php b/src/Http/Senders/GuzzleSender.php new file mode 100644 index 0000000..1c23076 --- /dev/null +++ b/src/Http/Senders/GuzzleSender.php @@ -0,0 +1,14 @@ +makeWith(GuzzleClient::class, $this->getGuzzleClientConfig()); + } +}