for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace agoalofalife\bpm\ServiceProviders;
use agoalofalife\bpm\Contracts\ServiceProvider;
use GuzzleHttp\Client;
use GuzzleHttp\ClientInterface;
class ClientServiceProvider implements ServiceProvider
{
public function register()
app()->bind(ClientInterface::class, Client::class);
}