aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/di/processor/interface.php
blob: b8563791cc28a0cef51244b7cbd348b1fff596a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
/**
*
* @package phpBB3
* @copyright (c) 2012 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

use Symfony\Component\DependencyInjection\ContainerBuilder;

interface phpbb_di_processor_interface
{
	/**
	* Mutate the container.
	*
	* @param ContainerBuilder $container The container
	*/
	public function process(ContainerBuilder $container);
}