value = $value; $this->cost = $cost; $this->name = $name; } /** * {@inheritdoc} */ public function getValue() : float { return $this->value; } /** * {@inheritdoc} */ public function getCost() : float { return $this->cost; } /** * {@inheritdoc} */ public function getName() : string { return $this->name; } }