rebase on oct-10-2023

This commit is contained in:
Rachit Bhargava
2023-10-10 17:23:21 -04:00
parent d37566ffb6
commit d096058d7d
4789 changed files with 254611 additions and 307223 deletions

View File

@@ -20,6 +20,22 @@ if ( ! defined( 'ABSPATH' ) ) {
*/
class WC_Shipping_Legacy_Local_Delivery extends WC_Shipping_Local_Pickup {
/**
* Shipping method fee type.
*
* How to calculate delivery charges.
*
* @var string
*/
public $type;
/**
* Allowed post/zip codes for the shipping method.
*
* @var string
*/
public $codes;
/**
* Constructor.
*/
@@ -66,7 +82,6 @@ class WC_Shipping_Legacy_Local_Delivery extends WC_Shipping_Local_Pickup {
$this->title = $this->get_option( 'title' );
$this->type = $this->get_option( 'type' );
$this->fee = $this->get_option( 'fee' );
$this->type = $this->get_option( 'type' );
$this->codes = $this->get_option( 'codes' );
$this->availability = $this->get_option( 'availability' );
$this->countries = $this->get_option( 'countries' );