WC_Cart::is_empty PHP Method

is_empty() public method

Checks if the cart is empty.
public is_empty ( ) : boolean
return boolean
    public function is_empty()
    {
        return 0 === sizeof($this->get_cart());
    }
WC_Cart