| 1 | <?php |
||
| 14 | class EventRepository extends Repository implements EventRepositoryInterface { |
||
| 15 | |||
| 16 | protected $entityType = 'event'; |
||
| 17 | public function byName($name) { |
||
| 20 | |||
| 21 | public function byFileName($fileName) { |
||
| 24 | |||
| 25 | public function byNameAndSeason($name, $season) { |
||
| 28 | |||
| 29 | public function nextFiveByTeam($teamId) { |
||
| 32 | |||
| 33 | public function nextFifteenEventsByLeague($leagueId) { |
||
| 36 | |||
| 37 | } |
||
| 38 |