1 | <?php |
||
10 | class FixtureRepository extends EntityRepository |
||
11 | { |
||
12 | /** |
||
13 | * @param GameDate $gameDate |
||
14 | * |
||
15 | * @return Fixture[] |
||
16 | */ |
||
17 | public function findByGameDate(GameDate $gameDate) |
||
21 | |||
22 | /** |
||
23 | * @param League $league |
||
24 | * @param int $season |
||
25 | * |
||
26 | * @return Fixture[] |
||
27 | */ |
||
28 | public function findByLeagueAndSeasonWithEvents(League $league, $season) |
||
41 | } |
||
42 |