factory = $factory; $this->builder = $builder; $this->repositoryQuery = $repositoryQuery; $this->store = $store; $this->solver = $solver; $this->fieldDefinition = $fieldDefinition; $this->rolesDefinition = $rolesDefinition; } public function getFactory(): UserFactory { return $this->factory; } public function getBuilder(): UserBuilder { return $this->builder; } public function getRepositoryQuery(): UserRepositoryQuery { return $this->repositoryQuery; } public function getStore(): UserStore { return $this->store; } public function getSolver(): UserSolver { return $this->solver; } public function getFieldDefinition(): UserFieldDefinition { return $this->fieldDefinition; } public function getRoleDefinition(): RolesDefinitionInterface { return $this->rolesDefinition; } }