value = $value; $this->cost = $cost; $this->name = $name; } /** * Get value of the item * * @return float * * @since 1.0.0 */ public function getValue() : float { return $this->value; } /** * Get value of the item * * @return float * * @since 1.0.0 */ public function getCost() : float { return $this->cost; } /** * Get the name of the item * * @return string * * @since 1.0.0 */ public function getName() : string { return $this->name; } }