id = $id; $this->name = $name; $this->picture = $picture; $this->mainColor = $mainColor; $this->secondColor = $secondColor; $this->members = $members; } /** * @return int */ public function getId(): int { return $this->id; } /** * @return string */ public function getName(): string { return $this->name; } /** * @return string */ public function getPicture(): string { return $this->picture; } /** * @return Color */ public function getMainColor(): Color { return $this->mainColor; } /** * @return Color */ public function getSecondColor(): Color { return $this->secondColor; } /** * @return Member[] */ public function listMembers(): array { return $this->members; } }