1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/dic] Introduce DI processors instead of abusing compiler passes

PHPBB3-10739
This commit is contained in:
Igor Wiedler
2012-07-21 20:42:07 +02:00
parent 40af25115b
commit 967cc550ed
5 changed files with 38 additions and 14 deletions

View File

@@ -0,0 +1,23 @@
<?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
{
public function process(ContainerBuilder $container);
}