| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace GolfLeague\Statistics; |
||
| 9 | public function register() |
||
| 10 | { |
||
| 11 | $this->app->bind( |
||
| 12 | 'GolfLeague\Statistics\League\LeagueStatistics', |
||
| 13 | 'GolfLeague\Statistics\League\LeagueStatisticsEloquent' |
||
| 14 | ); |
||
| 15 | $this->app->bind( |
||
| 16 | 'GolfLeague\Statistics\Player\PlayerStatistics', |
||
| 17 | 'GolfLeague\Statistics\Player\PlayerStatisticsEloquent' |
||
| 18 | ); |
||
| 19 | $this->app->bind( |
||
| 20 | 'GolfLeague\Statistics\Course\CourseStatistics', |
||
| 21 | 'GolfLeague\Statistics\Course\CourseStatisticsEloquent' |
||
| 22 | ); |
||
| 23 | } |
||
| 24 | } |
||
| 25 |