| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class Round extends Model |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $fillable = array('name', 'start_date', 'end_date', 'association_id', 'series_id', 'division_id', 'schedule_id', 'scores_closed'); |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The attributes that should be mutated to dates. |
||
| 14 | * |
||
| 15 | * @var array |
||
| 16 | */ |
||
| 17 | protected $dates = [ |
||
| 18 | 'start_date', |
||
| 19 | 'end_date', |
||
| 20 | ]; |
||
| 21 | |||
| 22 | // Round belongs to a series: |
||
| 23 | public function series() { |
||
| 25 | } |
||
| 26 | |||
| 27 | public function schedule() |
||
| 30 | } |
||
| 31 | |||
| 32 | public function matches() { |
||
| 38 |