for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Flock;
use Illuminate\Support\ServiceProvider;
class FlockServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*/
public function boot()
$this->app->when(FlockChannel::class)
->needs(Flock::class)
->give(function () {
return new Flock();
});
}
* Register the application services.
public function register()