Mercurial > hg > isophonics-drupal-site
comparison core/lib/Drupal/Core/Installer/InstallerServiceProvider.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
57 $definition = $container->getDefinition('router.builder'); | 57 $definition = $container->getDefinition('router.builder'); |
58 $definition->setClass('Drupal\Core\Installer\InstallerRouteBuilder') | 58 $definition->setClass('Drupal\Core\Installer\InstallerRouteBuilder') |
59 // The core router builder, but there is no reason here to be lazy, so | 59 // The core router builder, but there is no reason here to be lazy, so |
60 // we don't need to ship with a custom proxy class. | 60 // we don't need to ship with a custom proxy class. |
61 ->setLazy(FALSE); | 61 ->setLazy(FALSE); |
62 | |
63 // Use a performance optimised module extension list. | |
64 $container->getDefinition('extension.list.module')->setClass('Drupal\Core\Installer\InstallerModuleExtensionList'); | |
62 } | 65 } |
63 | 66 |
64 /** | 67 /** |
65 * {@inheritdoc} | 68 * {@inheritdoc} |
66 */ | 69 */ |