PluginProbe
Tiered Pricing Table for WooCommerce / 8.0.2
Tiered Pricing Table for WooCommerce v8.0.2
8.0.2 7.1.7 7.1.5 7.1.4 7.1.1 6.5.0 6.4.0 6.1.0 trunk 1.0 1.1 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.3.0 2.3.1 2.3.2 2.3.3 All 91 releases
← All changes | src/Addons/CustomColumns/Columns/AbstractCustomColumn.php +1 -1 6.1.0 → 8.0.2 View file →
@@ -46,9 +46,9 @@
46 46 public function getData() : array {
47 47 return $this->data;
48 48 }
49 49
50 - public function getSlug( string $prefix = null ) : string {
50 + public function getSlug( ?string $prefix = null ) : string {
51 51 // Prefix is used to store custom field for percentage and fixed type
52 52 return ( $prefix ? $prefix . '_' . $this->slug : $this->slug );
53 53 }
54 54