now->__toString(); } /** * Returns the current temperature's unit. * * @return string The current temperature's unit. */ public function getUnit() { return $this->now->getUnit(); } /** * Returns the current temperature. * * @return string The current temperature. */ public function getValue() { return $this->now->getValue(); } /** * Returns the current temperature's description. * * @return string The current temperature's description. */ public function getDescription() { return $this->now->getDescription(); } /** * Returns the current temperature as formatted string. * * @return string The current temperature as formatted string. */ public function getFormatted() { return $this->now->getFormatted(); } /** * Create a new temperature object. * * @param Unit $now The current temperature. * @param Unit $min The minimal temperature. * @param Unit $max The maximal temperature. * * @internal */ public function __construct(Unit $now, Unit $min, Unit $max) { $this->now = $now; $this->min = $min; $this->max = $max; } }