Файловый менеджер - Редактировать - /home/harasnat/www/labour/wp-content/plugins/woocommerce-payments/includes/exceptions/class-amount-too-small-exception.php
Назад
<?php /** * Class Amount_Too_Small_Exception * * @package WooCommerce\Payments */ namespace WCPay\Exceptions; defined( 'ABSPATH' ) || exit; /** * Class representing Amount_Too_Small_Exception */ class Amount_Too_Small_Exception extends API_Exception { /** * Holds the minimum amount, returned from the API. * * @var int */ private $amount; /** * Holds the currency for this minimum amount. * * @var string */ private $currency; /** * Constructor * * @param string $message The Exception message to throw. * @param int $minimum_amount The minimum amount, required to create an intent in the request currency. * @param string $currency The currency for which this is the minimum amount. * @param int $http_code HTTP response code. * @param int $code The Exception code. * @param \Throwable $previous The previous exception used for the exception chaining. */ public function __construct( $message, $minimum_amount, $currency, $http_code, $code = 0, $previous = null ) { $this->amount = $minimum_amount; $this->currency = $currency; parent::__construct( $message, 'amount_too_small', $http_code, null, null, $code, $previous ); } /** * Returns the minimum required amount. * * @return int */ public function get_minimum_amount() { return $this->amount; } /** * Returns the currency of the minumum required amount. * * @return string */ public function get_currency() { return $this->currency; } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка