Skip to content
Snippets Groups Projects
Select Git revision
  • b38cb0e4646bc9d15316ff0727f992de83511710
  • master default protected
  • 1.1.0
  • 1.0
4 results

WC_Shipping_Method.php

Blame
  • WC_Shipping_Method.php 151 B
    <?php
    
    class WC_Shipping_Method
    {
    
        public string $id;
    
        public function __construct($instance_id)
        {
            $this->id = 'test_id';
        }
    
    }