I am confused, I have a PHP class with a constructor:
class Test { public function __construct() { return \"some text\"; } }
Th
You cannot return anything from a constructor. The new keyword will always result in a new object, it does not matter what you return from the constructor.
return
new