Slide 16
Slide 16 text
$amsterdam = new City(
"Amsterdam", "Netherlands", 4.8951679, 52.3702157
);
class City {
private $latitude;
private $longitude;
//other fields
public function __construct(
$name, $country, $latitude, $longitude
) {
$this->latitude = $latitude;
$this->longitude = $longitude;
//other assignments
}
//getters
}