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