for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Recca0120\Every8d;
use Illuminate\Support\Arr;
use Illuminate\Support\ServiceProvider;
class Every8dServiceProvider extends ServiceProvider
{
public function register()
$this->app->singleton(Client::class, function ($app) {
$config = $app['config']['services.every8d'];
return new Client($config['user_id'], $config['password']);
});
}