Pull merge.
[yaffs-website] / web / core / lib / Drupal / Core / DependencyInjection / ServiceProviderInterface.php
1 <?php
2
3 namespace Drupal\Core\DependencyInjection;
4
5 /**
6  * Interface that all service providers must implement.
7  *
8  * @ingroup container
9  */
10 interface ServiceProviderInterface {
11
12   /**
13    * Registers services to the container.
14    *
15    * @param ContainerBuilder $container
16    *   The ContainerBuilder to register services to.
17    */
18   public function register(ContainerBuilder $container);
19
20 }