Файловый менеджер - Редактировать - /var/www/html/libraries/omnipay3/vendor/omnipay/worldpay/src/Message/JsonPurchaseResponse.php
Ðазад
<?php namespace Omnipay\WorldPay\Message; /** * WorldPay Purchase Request */ class JsonPurchaseResponse extends JsonResponse { /** * @var string Payment status that determines success */ protected $successfulPaymentStatus = 'SUCCESS'; /** * Is the response successful? * * @return bool */ public function isSuccessful() { $isHttpSuccess = parent::isSuccessful(); $isPurchaseSuccess = false; if (isset($this->data['paymentStatus']) && $this->data['paymentStatus'] == $this->successfulPaymentStatus) { $isPurchaseSuccess = true; } return ($isHttpSuccess && $isPurchaseSuccess); } /** * What is the relevant description of the transaction response? * * @todo Sometimes the 'description' field is more user-friendly (see simulated eror) - how do we decide which one? * * @return string|null */ public function getMessage() { // check for HTTP failure response first $httpMessage = parent::getMessage(); if ($httpMessage !== null) { return $httpMessage; } // check if descriptive failure reason is available if (!$this->isSuccessful() && isset($this->data['paymentStatusReason'])) { return $this->data['paymentStatusReason']; } // check if general payment status is available if (isset($this->data['paymentStatus'])) { return $this->data['paymentStatus']; } } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка