| 1 | <?php |
||
| 15 | class EloquentTeamMatchesRepository implements TeamMatchesRepository |
||
| 16 | { |
||
| 17 | private $teamMatch; |
||
| 18 | |||
| 19 | public function __construct(Teammatch $teamMatch) |
||
| 23 | |||
| 24 | public function all() |
||
| 28 | |||
| 29 | public function findById($id) |
||
| 33 | |||
| 34 | public function create($input) |
||
| 38 | |||
| 39 | public function update($team) |
||
| 43 | |||
| 44 | public function getByMatch($matchId) |
||
| 48 | } |
||
| 49 |