/home/desid573/public_html/eway/pdd/app/Vendor/eway/src/Rapid/Model/Response
NameSizeModeActions
AbstractResponse.php10450644editdlrm
CreateCustomerResponse.php25030644editdlrm
CreateTransactionResponse.php35780644editdlrm
QueryAccessCodeResponse.php28440644editdlrm
QueryCustomerResponse.php3920644editdlrm
QueryTransactionResponse.php6910644editdlrm
RefundResponse.php11880644editdlrm
SettlementSearchResponse.php3510644editdlrm
Edit: /home/desid573/public_html/eway/pdd/app/Vendor/eway/src/Rapid/Model/Response/AbstractResponse.php (1045B)
attributes) ? $this->attributes['Errors'] : ''; if (!is_string($errors) || strlen(trim($errors)) === 0) { $errors = []; } else { $errors = explode(',', $errors); } return array_merge($this->errors, $errors); } /** * @param $errorCode * * @return $this */ public function addError($errorCode) { $this->errors[] = $errorCode; if (!array_key_exists('Errors', $this->attributes)) { $this->attributes['Errors'] = ''; } return $this; } }