class ServiceProviderTestServiceProvider

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/service_provider_test/src/ServiceProviderTestServiceProvider.php \Drupal\service_provider_test\ServiceProviderTestServiceProvider
  2. 8.9.x core/modules/system/tests/modules/service_provider_test/src/ServiceProviderTestServiceProvider.php \Drupal\service_provider_test\ServiceProviderTestServiceProvider
  3. 11.x core/modules/system/tests/modules/service_provider_test/src/ServiceProviderTestServiceProvider.php \Drupal\service_provider_test\ServiceProviderTestServiceProvider

Hierarchy

Expanded class hierarchy of ServiceProviderTestServiceProvider

File

core/modules/system/tests/modules/service_provider_test/src/ServiceProviderTestServiceProvider.php, line 9

Namespace

Drupal\service_provider_test
View source
class ServiceProviderTestServiceProvider implements ServiceModifierInterface {
  
  /**
   * {@inheritdoc}
   */
  public function alter(ContainerBuilder $container) {
    if ($container->has('file.usage')) {
      // Override the class used for the file.usage service.
      $definition = $container->getDefinition('file.usage');
      $definition->setClass('Drupal\\service_provider_test\\TestFileUsage');
    }
    // Make sure a cached service can be also called in a service provider.
    // https://www.drupal.org/project/drupal/issues/2363351
    /** @var \Drupal\Core\Extension\ModuleHandlerInterface $module_handler */
    $module_handler = $container->get('module_handler');
    try {
      $this_module_relative_path = $module_handler->getModule('service_provider_test')
        ->getPath();
      $container->setParameter('service_provider_test_path', $this_module_relative_path);
    } catch (\Exception $e) {
      throw new \LogicException('Unable to identify installation path of this module.');
    }
    if ($indicator = Settings::get('deployment_identifier')) {
      $container->setParameter('container_rebuild_indicator', $indicator);
    }
    if ($parameter = Settings::get('container_rebuild_test_parameter')) {
      $container->setParameter('container_rebuild_test_parameter', $parameter);
    }
  }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
ServiceProviderTestServiceProvider::alter public function Modifies existing service definitions. Overrides ServiceModifierInterface::alter

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.