for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CodeZero\Mailer;
use Illuminate\Support\ServiceProvider;
class MailerServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application.
*
* @return void
*/
public function boot()
//
}
* Register the service provider.
public function register()
$this->app->bind(
'CodeZero\Mailer\Mailer',
'CodeZero\Mailer\LaravelMailer'
);