I see that there are no getter and setter methods in cakePHP Models to access columns in a database (like there is in symfony). Without those getter and setter methods, I can't really do pure OOP programming in cakePHP.
I can't for example create an object called let's say Book like:
$book = new Book();
And now access books' properties like so:
$title = $book->getTitle();
$author = $book->getAuthor();
etc... Does anybody know how I can get such pure OOP functionality in cakePHP? Or do I have to implement those getters and setters myself in the Model.
Thanks in advance