| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class Wine extends Category |
||
| 6 | { |
||
| 7 | public function region(string $region) |
||
| 8 | { |
||
| 9 | $this->attributes['Region'] = $region; |
||
| 10 | return $this; |
||
| 11 | } |
||
| 12 | |||
| 13 | public function varietal(string $varietal) |
||
| 17 | } |
||
| 18 | |||
| 19 | public function volume(string $volume) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function winery(string $winery) |
||
| 29 | } |
||
| 30 | } |