You've already forked wc-composable-product
30 lines
457 B
PHP
30 lines
457 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Minimal WC_Settings_Page stub for unit testing.
|
||
|
|
*/
|
||
|
|
class WC_Settings_Page {
|
||
|
|
protected $id = '';
|
||
|
|
protected $label = '';
|
||
|
|
|
||
|
|
public function __construct() {
|
||
|
|
}
|
||
|
|
|
||
|
|
public function get_id() {
|
||
|
|
return $this->id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function get_label() {
|
||
|
|
return $this->label;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function get_settings() {
|
||
|
|
return [];
|
||
|
|
}
|
||
|
|
|
||
|
|
public function output() {
|
||
|
|
}
|
||
|
|
|
||
|
|
public function save() {
|
||
|
|
}
|
||
|
|
}
|