Doctrine documentation says you can use
public function construct() { ... }
as a construct function since __construct can't be overridden.
When I place it in my code and put a echo in it
public function construct() { echo "constructing..."; }
it isn't called during the construction of the object.
How is it supposed to be called or is there some fancy way of calling a function during (or just after) load time in PHP?