project; } public function getProjectName(): string { return $this->projectName; } public function getLogoPublicPath(): string { return $this->logoPublicPath; } public function getLogoMenuPath(): string { return $this->logoMenuPath; } public function getLoginPageLogoPath(): string { return $this->loginPageLogoPath; } public function getLogoBitmapPublicPath(): string { return $this->logoBitmapPublicPath; } public function getAdminHostPath(): string { return $this->adminHostPath; } public function isLostPasswordEnabled(): bool { return $this->lostPasswordEnabled; } public function getDefaultCustomerRoute(): string { return $this->defaultCustomerRoute; } public function getDefaultBackofficeRoute(): string { return $this->defaultBackofficeRoute; } public function getHmr(): bool { return $this->hmr; } public function getContext(): ?string { return $this->context; } public function getCustomerAclResource(): Resource { return $this->customerAclResource; } public function getBackofficeAclResource(): Resource { return $this->backofficeAclResource; } public function getFullDataAclResource(): Resource { return $this->fullDataAclResource; } public function getJsComponentsConfig(): array { return $this->jsComponentsConfig; } public function setJsComponentsConfig(array $jsComponentsConfig): self { $this->jsComponentsConfig = $jsComponentsConfig; return $this; } public function getEmailBackgroundColor(): string { return $this->emailBackgroundColor; } public function setEmailBackgroundColor(string $emailBackgroundColor): static { $this->emailBackgroundColor = $emailBackgroundColor; return $this; } public function getFaviconFileNamePng(): ?string { return $this->faviconFileNamePng; } public function setFaviconFileNamePng(string $faviconFileNamePng): static { $this->faviconFileNamePng = $faviconFileNamePng; return $this; } public function getFaviconFileNameSvg(): ?string { return $this->faviconFileNameSvg; } public function setFaviconFileNameSvg(string $faviconFileNameSvg): static { $this->faviconFileNameSvg = $faviconFileNameSvg; return $this; } public function getColors(): array { return $this->colors; } protected ?KeycloakManager $keycloakManager = null; public function setKeycloakManager(KeycloakManager $keycloakManager): void { $this->keycloakManager = $keycloakManager; } public function getKeycloakManager(): ?KeycloakManager { return $this->keycloakManager; } public function isKeycloakEnabled(): bool { return $this->keycloakEnabled; } }