for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Wandu\Config;
use Wandu\Config\Contracts\Config as ConfigContract;
use Wandu\DI\ContainerInterface;
use Wandu\DI\ServiceProviderInterface;
class ConfigServiceProvider implements ServiceProviderInterface
{
public function register(ContainerInterface $app)
$app->bind(ConfigContract::class, Config::class);
}
public function boot(ContainerInterface $app)