You are here

class NormalInstallerServiceProvider in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Installer/NormalInstallerServiceProvider.php \Drupal\Core\Installer\NormalInstallerServiceProvider

Service provider for the non early installer environment.

Hierarchy

Expanded class hierarchy of NormalInstallerServiceProvider

File

core/lib/Drupal/Core/Installer/NormalInstallerServiceProvider.php, line 11

Namespace

Drupal\Core\Installer
View source
class NormalInstallerServiceProvider implements ServiceProviderInterface {

  /**
   * {@inheritdoc}
   */
  public function register(ContainerBuilder $container) {

    // Use performance-optimized extension lists.
    $container
      ->getDefinition('extension.list.module')
      ->setClass('Drupal\\Core\\Installer\\InstallerModuleExtensionList');
    $container
      ->getDefinition('extension.list.theme')
      ->setClass('Drupal\\Core\\Installer\\InstallerThemeExtensionList');
    $container
      ->getDefinition('extension.list.theme_engine')
      ->setClass('Drupal\\Core\\Installer\\InstallerThemeEngineExtensionList');
  }

}

Members