PHP - Classes and Objects
Identify the error in this PHP class:
class Book {
private $title;
public function __construct($title) {
$this->title = $title;
}
public function getTitle() {
return title;
}
}