I got this error when debugging my code:
PHP Parse error: syntax error, unexpected T_OBJECT_OPERATOR in order.php on line 72
He
change to as your syntax was invalid:
$purchaseOrder = PurchaseOrderFactory::instance(); $arrOrderDetails = $purchaseOrder->load($customerName);
where presumably instance() creates an instance of the class. You can do this rather than saying new
instance()
new