value = $value; $this->cost = $cost; } /** * 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; } }