public function Price::greaterThan in Commerce Core 8.2
Gets whether the current price is greater than the given price.
Parameters
\Drupal\commerce_price\Price $price: The price.
Return value
bool TRUE if the current price is greater than the given price, FALSE otherwise.
1 call to Price::greaterThan()
- Price::greaterThanOrEqual in modules/
price/ src/ Price.php - Gets whether the current price is greater than or equal to the given price.
File
- modules/
price/ src/ Price.php, line 240
Class
- Price
- Provides a value object for monetary values.
Namespace
Drupal\commerce_priceCode
public function greaterThan(Price $price) : bool {
return $this
->compareTo($price) == 1;
}