Closed
Description
There is a setting here called by_reference
. It does actually control by reference
or not, but then the explanation is that a setter is not called. What does that even have to do with a setter. You can keep by reference and do the setter at the same time.
$article->setTitle('...');
$author->setName('...');
$author->setEmail('...');
$article->setAuthor($author);