scope = $scope; return $obj; } public function withModuleName(?string $moduleName): self { $obj = clone $this; $obj->moduleName = $moduleName; return $obj; } public function getScope(): ?string { return $this->scope; } public function getModuleName(): ?string { return $this->moduleName; } }