What I would like to do is something like this:
$method_result = new Obj()->method();
Instead of having to do:
$obj = ne
Simply we can do this
$method_result = (new Obj())->method();