| 1 | <?php |
||
| 9 | class Shipping_Zone { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var WC_Shipping_Zone |
||
| 13 | */ |
||
| 14 | private $wc_shipping_zone; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var Shipping_Method[] |
||
| 18 | */ |
||
| 19 | private $methods; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Shipping_Zone constructor. |
||
| 23 | * |
||
| 24 | * @param WC_Shipping_Zone $wc_shipping_zone |
||
| 25 | */ |
||
| 26 | public function __construct( $wc_shipping_zone ) { |
||
| 31 | |||
| 32 | public function add_available_delivery_method( &$jsonld ) { |
||
| 42 | |||
| 43 | public static function from_wc_shipping_zone( $wc_shipping_zone ) { |
||
| 47 | |||
| 48 | } |