You are here

public function Price::lessThan in Commerce Core 8.2

Gets whether the current price is lesser than the given price.

Parameters

\Drupal\commerce_price\Price $price: The price.

Return value

bool TRUE if the current price is lesser than the given price, FALSE otherwise.

1 call to Price::lessThan()
Price::lessThanOrEqual in modules/price/src/Price.php
Gets whether the current price is lesser than or equal to the given price.

File

modules/price/src/Price.php, line 268

Class

Price
Provides a value object for monetary values.

Namespace

Drupal\commerce_price

Code

public function lessThan(Price $price) : bool {
  return $this
    ->compareTo($price) == -1;
}