Skip to content
Snippets Groups Projects
Select Git revision
  • d3e8d6a40ebb405c857331a50560c861c3e90996
  • main default protected
  • devel
  • 1.1.0
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
9 results

Version_02.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';
        }
    
    }