for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace FlyingLuscas\BugNotifier;
use Illuminate\Support\ServiceProvider;
class BugNotifierServiceProvider extends ServiceProvider
{
/**
* Perform post-registration booting of services.
*
* @return void
*/
public function boot()
$this->mergeConfigFrom(__DIR__.'/config.php', 'bugnotifier');
$this->loadViewsFrom(__DIR__.'/views', 'bugnotifier');
$this->publishes([
__DIR__.'/config.php' => config_path('bugnotifier.php'),
], 'config');
}
* Register bindings in the container.
public function register()
$this->app->singleton('BugNotifier', function () {
return new BugNotifier;
});