$elements */ public function __construct( private Set $set, private array $elements, ) {} public function getSet(): Set { return $this->set; } /** * @return list */ public function getElements(): array { return $this->elements; } }