for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace CmdrSharp\GuzzleApi;
use Illuminate\Support\ServiceProvider;
class GuzzleApiServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot(): void
//
}
* Register any application services.;
public function register(): void
$this->app->bind(RequestInterface::class, Client::class);