for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace GolfLeague\Services;
use Illuminate\Support\ServiceProvider;
class ServicesServiceProvider extends ServiceProvider
{
public function register()
$this->app->bind('GolfLeague\PrizeMoney', function()
return new \GolfLeague\PrizeMoney;
});
$this->app->bind('GolfLeague\Services\MoneyService', function()
return new \GolfLeague\Services\MoneyService;
}