edible = $edible; $this->color = $color; } function is_edible() { return $this->edible; } function get_color() { return $this->color; } function set_color($color) { $this->color = $color; } }