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 Illuminate\Config\Repository;
class ConfigurationServiceProvider implements ServiceProvider
{
public function register()
if ( app()->resolved('config') === false )
app()->instance('config', new Repository());
}