Plugin Directory

Changeset 3267922


Ignore:
Timestamp:
04/07/2025 01:34:43 PM (11 months ago)
Author:
clickshipfc
Message:

Fix dynamic property deprecation warnings

Location:
clickship/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • clickship/trunk/includes/class-clickship-shipping.php

    r3160088 r3267922  
    2424    class WC_Clickship_Shipping_Rates_Method extends WC_Shipping_Method {
    2525
     26     /**
     27     * The ClickShip API URL.
     28     *
     29     * This property stores the URL for the ClickShip service, which is used
     30     * to fetch shipping rates and process shipping requests.
     31     *
     32     * @since    1.0.0
     33     * @access   protected
     34     * @var      string    $clickship_url    The ClickShip API URL.
     35     */
     36    protected string $clickship_url;
     37
     38    /**
     39     * The marketplace ID associated with ClickShip.
     40     *
     41     * This property holds the marketplace ID that is retrieved from the
     42     * plugin settings. It helps identify the specific marketplace that
     43     * is linked to the shipping process.
     44     *
     45     * @since    1.0.0
     46     * @access   protected
     47     * @var      string    $marketplace_id    The marketplace ID for ClickShip.
     48     */
     49    protected string $marketplace_id;
     50
     51    /**
     52     * The ClickShip enable status.
     53     *
     54     * This property determines whether ClickShip Real-time rates is enabled
     55     * or disabled, based on the plugin's configuration settings.
     56     *
     57     * @since    1.0.0
     58     * @access   protected
     59     * @var      string    $clickship_enable    The ClickShip enable status.
     60     */
     61    protected string $clickship_enable;
     62   
    2663    /**
    2764     * The array of actions registered with WordPress.
  • clickship/trunk/readme.txt

    r3238166 r3267922  
    55Tested up to: 6.7.1
    66Requires PHP: 7.2
    7 Stable tag: 1.0.3
     7Stable tag: 1.0.4
    88License: GNU General Public License v3.0
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.