id = $id; $this->createdAt = $createdAt; $this->validTo = $validTo; } /** * @return string */ public function id() { return $this->id; } /** * @return DateTime */ public function createdAt() { return $this->createdAt; } /** * @return DateTime */ public function validTo() { return $this->validTo; } /** * @return bool */ public function isValid() { $currentDate = new DateTime(); return $this->validTo > $currentDate; } }