| 1 | <?php |
||
| 5 | class SeaFoodCityPrice |
||
| 6 | { |
||
| 7 | private $city_id; |
||
| 8 | private $seafood_id; |
||
| 9 | private $price_per_kg; |
||
| 10 | |||
| 11 | public function __construct(int $city_id, int $seafood_id, float $price_per_kg) |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return mixed |
||
| 20 | */ |
||
| 21 | public function getCityId(): id |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return mixed |
||
| 28 | */ |
||
| 29 | public function getSeafoodId(): id |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return mixed |
||
| 36 | */ |
||
| 37 | public function getPricePerKg(): float |
||
| 41 | |||
| 42 | |||
| 43 | } |
||
| 44 |