for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace GolfLeague\Statistics;
use Illuminate\Support\ServiceProvider;
class StatisticsServiceProvider extends ServiceProvider
{
public function register()
$this->app->bind(
'GolfLeague\Statistics\League\LeagueStatistics',
'GolfLeague\Statistics\League\LeagueStatisticsEloquent'
);
'GolfLeague\Statistics\Player\PlayerStatistics',
'GolfLeague\Statistics\Player\PlayerStatisticsEloquent'
'GolfLeague\Statistics\Course\CourseStatistics',
'GolfLeague\Statistics\Course\CourseStatisticsEloquent'
}