Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
CRAP | |
0.00% |
0 / 2 |
ServiceProviderBase | |
0.00% |
0 / 1 |
|
0.00% |
0 / 2 |
6 | |
0.00% |
0 / 2 |
register | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
alter | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
<?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) { | |
} | |
} |