You've already forked wc-bootstrap
22 lines
308 B
PHP
22 lines
308 B
PHP
|
|
<?php
|
||
|
|
/**
|
||
|
|
* Stub for WC_Product.
|
||
|
|
*
|
||
|
|
* Minimal implementation for type-hint satisfaction in unit tests.
|
||
|
|
*/
|
||
|
|
|
||
|
|
class WC_Product
|
||
|
|
{
|
||
|
|
private int $id;
|
||
|
|
|
||
|
|
public function __construct(int $id = 0)
|
||
|
|
{
|
||
|
|
$this->id = $id;
|
||
|
|
}
|
||
|
|
|
||
|
|
public function get_id(): int
|
||
|
|
{
|
||
|
|
return $this->id;
|
||
|
|
}
|
||
|
|
}
|