for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Inbounder;
use Illuminate\Support\ServiceProvider;
class InbounderServiceProvider extends ServiceProvider
{
/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;
* Register bindings in the container.
* @return void
public function register()
$this->app->bind('inbounder', function ($app) {
return new Inbounder($app);
});
}
* Perform post-registration booting of services.
public function boot()
$this->publishes([
__DIR__.'/../config.php' => config_path('inbounder.php'),
], 'config');