return $concatenatedStylesEvent->
getConcatenatedStyles();
} private function getConcatenatedScripts( FileCollection
$scriptFiles,
StorefrontPluginConfiguration
$themeConfig,
string
$salesChannelId ): string
{ $concatenatedScripts = '';
foreach ($scriptFiles as $file) { $concatenatedScripts .=
$this->themeFileImporter->
getConcatenableScriptPath($file,
$themeConfig);
} $concatenatedScriptsEvent =
new ThemeCompilerConcatenatedScriptsEvent($concatenatedScripts,
$salesChannelId);
$this->eventDispatcher->
dispatch($concatenatedScriptsEvent);
return $concatenatedScriptsEvent->
getConcatenatedScripts();
} private function writeCompiledFiles( string
$themePrefix,
string
$themeId,