| 1 | <?php |
||
| 11 | abstract class Job extends \App\Jobs\Job |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Tournament |
||
| 15 | */ |
||
| 16 | protected $tournament; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Job constructor. |
||
| 20 | * @param Tournament $tournament |
||
| 21 | */ |
||
| 22 | public function __construct(Tournament $tournament) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param Tournament $tournament |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | abstract protected function setTournament(Tournament $tournament); |
||
| 32 | } |
||
| 33 |