Файловый менеджер - Редактировать - /home/harasnat/www/labour/wp-content/plugins/woocommerce-payments/includes/core/server/request/class-cancel-intention.php
Назад
<?php /** * Class file for WCPay\Core\Server\Request\Update_Intent. * * @package WooCommerce Payments */ namespace WCPay\Core\Server\Request; use WC_Payments; use WCPay\Core\Exceptions\Server\Request\Invalid_Request_Parameter_Exception; use WCPay\Core\Server\Request; use WC_Payments_API_Client; /** * Request class for canceling intents. */ class Cancel_Intention extends Request { use Intention; use Level3; const IMMUTABLE_PARAMS = []; const REQUIRED_PARAMS = []; const DEFAULT_PARAMS = []; /** * Specifies the WordPress hook name that will be triggered upon calling the send() method. * * @var string */ protected $hook = 'wcpay_cancel_intent_request'; /** * Sets the intent ID, which will be used in the request URL. * * @param string $id Sets the intent ID, which will be used in the request URL. * * @throws Invalid_Request_Parameter_Exception */ protected function set_id( string $id ) { $this->validate_stripe_id( $id ); $this->id = $id; } /** * Returns the request's API. * * @return string * @throws Invalid_Request_Parameter_Exception */ public function get_api(): string { return WC_Payments_API_Client::INTENTIONS_API . '/' . $this->id . '/cancel'; } /** * Returns the request's HTTP method. */ public function get_method(): string { return 'POST'; } /** * Formats the response from the server. * * @param mixed $response The response from `WC_Payments_API_Client::request`. * @return mixed Either the same response, or the correct object. */ public function format_response( $response ) { return $this->api_client->deserialize_payment_intention_object_from_array( $response ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка