| 1 | <?php |
||
| 15 | class MatchQueryBuilder extends QueryBuilder |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Only include matches where a specific team played |
||
| 19 | * |
||
| 20 | * @param Team $team Team The team which played the matches |
||
| 21 | * @param string $result string|null The outcome of the matches (win, draw or loss) |
||
| 22 | * @return self |
||
| 23 | */ |
||
| 24 | 2 | public function with($team, $result = null) |
|
| 61 | } |
||
| 62 |