Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0 / 0 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\DependencyInjection\ServiceProviderInterface. | |
*/ | |
namespace Drupal\Core\DependencyInjection; | |
/** | |
* Interface that all service providers must implement. | |
* | |
* @ingroup container | |
*/ | |
interface ServiceProviderInterface { | |
/** | |
* Registers services to the container. | |
* | |
* @param ContainerBuilder $container | |
* The ContainerBuilder to register services to. | |
*/ | |
public function register(ContainerBuilder $container); | |
} |