79304453

Date: 2024-12-23 23:21:45
Score: 0.5
Natty:
Report link

If fromData method is static method you should use like this

 $secure3Dv2Notification = Secure3Dv2Notification::fromData($_POST);

If fromData is non-static method you should use

 $secure3Dv2Notification = (new Secure3Dv2Notification())->fromData($_POST);
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Gev99