ShopCurrency::TrimCents PHP Method

TrimCents() public method

If no cents on the price, trim those off.
public TrimCents ( ) : string
return string
    public function TrimCents()
    {
        $val = $this->value;
        if (floor($val) == $val) {
            return floor($val);
        }
        return $val;
    }