ServiceProviderBase.php in Service Container 7.2
Same filename and directory in other branches
Namespace
Drupal\Core\DependencyInjectionFile
lib/Drupal/Core/DependencyInjection/ServiceProviderBase.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\DependencyInjection\ServiceProviderBase.
*/
namespace Drupal\Core\DependencyInjection;
/**
* Base service provider implementation.
*
* @ingroup container
*/
abstract class ServiceProviderBase implements ServiceProviderInterface, ServiceModifierInterface {
/**
* {@inheritdoc}
*/
public function register(ContainerBuilder $container) {
}
/**
* {@inheritdoc}
*/
public function alter(ContainerBuilder $container) {
}
}
Classes
Name | Description |
---|---|
ServiceProviderBase | Base service provider implementation. |