Hi,

I was wondering if object dereferentiation after constructor call is
something that has been discussed already. This is, being able to do
something like:

new MyClass()->setSomething();

Instead of:

$var = new MyClass();
$var->setSomething();

Regards,

David Vega

Reply via email to