blob: 08c881e46a0751d432f2df8d88d5bd32bda4cebb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
namespace Drupal\Core\DependencyInjection;
/**
* Interface that service providers can implement to modify services.
*
* @ingroup container
*/
interface ServiceModifierInterface {
/**
* Modifies existing service definitions.
*
* @param ContainerBuilder $container
* The ContainerBuilder whose service definitions can be altered.
*/
public function alter(ContainerBuilder $container);
}
|