class Car{
var $year;
var $make;
var $model;
function Car($year,$make,$model){
$this->year=$year;
$this->make=$make;
$this->model=$model;
}
function getYear(){
return $this->year;
}
function getMake(){
return $this->make;
}
function getModel(){
return $this->model;
}
}