getValue() < self::NORMAL_PRESSURE; } /** * Check if the pressure is above normal pressure * * @return bool */ public function isHighPressure(): bool { return $this->getValue() > self::NORMAL_PRESSURE; } public function thresholdDiff(DiffInterface $e): bool { return $this->isLowPressure() != $e->isLowPressure(); } }