Файловый менеджер - Редактировать - /home/harasnat/www/horse/wp-content/plugins/google-listings-and-ads/src/Shipping/LocationRate.php
Назад
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Shipping; use JsonSerializable; defined( 'ABSPATH' ) || exit; /** * Class LocationRate * * @package Automattic\WooCommerce\GoogleListingsAndAds\Shipping * * @since 2.1.0 */ class LocationRate implements JsonSerializable { /** * @var ShippingLocation */ protected $location; /** * @var ShippingRate */ protected $shipping_rate; /** * LocationRate constructor. * * @param ShippingLocation $location * @param ShippingRate $shipping_rate */ public function __construct( ShippingLocation $location, ShippingRate $shipping_rate ) { $this->location = $location; $this->shipping_rate = $shipping_rate; } /** * @return ShippingLocation */ public function get_location(): ShippingLocation { return $this->location; } /** * @return ShippingRate */ public function get_shipping_rate(): ShippingRate { return $this->shipping_rate; } /** * Specify data which should be serialized to JSON */ public function jsonSerialize(): array { $rate_serialized = $this->shipping_rate->jsonSerialize(); return array_merge( $rate_serialized, [ 'country' => $this->location->get_country(), ] ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0.02 |
proxy
|
phpinfo
|
Настройка