for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Modules\Proxy\Providers;
use Illuminate\Support\ServiceProvider;
use Modules\Proxy\Contracts\ProxyRepositoryContract;
use Modules\Proxy\Contracts\ProxyServiceContract;
use Modules\Proxy\Repositories\ProxyRepository;
use Modules\Proxy\Services\ProxyService;
class ProxyServiceProvider extends ServiceProvider
{
/**
* Boot the application events.
*
* @return void
*/
public function boot()
}
* Register the service provider.
public function register()
$this->app->bind(
ProxyServiceContract::class,
ProxyService::class
);
ProxyRepositoryContract::class,
ProxyRepository::class