PHP - Classes and Objects
Identify the error in this PHP class method:
class Car {
public $model = 'Tesla';
public function getModel() {
return $model;
}
}