How to call function of just created object without temporary variable?
Code
(new \Foo())->woof();
is not valid in php.
What is right?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It can work if the object has singleton
BTW: it doesn’t have to be even singleton but also static method which returns the instance