for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PeterColes\Countries;
use Illuminate\Support\ServiceProvider;
class CountriesServiceProvider extends ServiceProvider
{
/**
* Register the application services.
*
* @return void
*/
public function register()
$this->app->singleton('countries', function() {
return new \PeterColes\Countries\Maker;
});
}
* Perform post-registration booting of services.
public function boot()
//