I would like to use the list() statement in combination with an object.
$tuple = new Tuple();
// ..
list ($guestbook, $entry, $author) = $tuple;
This would work if $tuple
was an array with three elements. But its an object.
Is there any way without using a method of Tuple
(returning that kind of array) like implementing a fancy native interface I yet don't know?