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