value = $value; $this->start = $start; $this->end = $end; $this->name = $name; } /** * {@inheritdoc} */ public function getValue() : float { return $this->value; } /** * {@inheritdoc} */ public function getStart() : \DateTime { return $this->start; } /** * {@inheritdoc} */ public function getEnd() : ?\DateTime { return $this->end; } }