Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / Installer / NormalInstallerServiceProvider.php
1 <?php
2
3 namespace Drupal\Core\Installer;
4
5 use Drupal\Core\DependencyInjection\ContainerBuilder;
6 use Drupal\Core\DependencyInjection\ServiceProviderInterface;
7
8 /**
9  * Service provider for the non early installer environment.
10  */
11 class NormalInstallerServiceProvider implements ServiceProviderInterface {
12
13   /**
14    * {@inheritdoc}
15    */
16   public function register(ContainerBuilder $container) {
17     // Use a performance optimised module extension list.
18     $container->getDefinition('extension.list.module')->setClass('Drupal\Core\Installer\InstallerModuleExtensionList');
19   }
20
21 }