diff --git a/core/lib/Drupal/Core/Installer/ConfigOverride.php b/core/lib/Drupal/Core/Installer/ConfigOverride.php index af72703503..ff8d068b2f 100644 --- a/core/lib/Drupal/Core/Installer/ConfigOverride.php +++ b/core/lib/Drupal/Core/Installer/ConfigOverride.php @@ -29,8 +29,8 @@ public function register(ContainerBuilder $container) { public function loadOverrides($names) { $overrides = []; if (drupal_installation_attempted() && function_exists('drupal_install_profile_distribution_name')) { - // Early in the installer the site name is unknown. In this case we need to - // fallback to the distribution's name. + // Early in the installer the site name is unknown. In this case we need + // to fallback to the distribution's name. $overrides['system.site'] = [ 'name' => drupal_install_profile_distribution_name(), ];