WC_Product::set_stock_quantity PHP Method

set_stock_quantity() public method

Set number of items available for sale.
Since: 2.7.0
public set_stock_quantity ( float | null $quantity )
$quantity float | null Stock quantity.
    public function set_stock_quantity($quantity)
    {
        $this->set_prop('stock_quantity', '' !== $quantity ? wc_stock_amount($quantity) : null);
    }
WC_Product