1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

[feature/dic] Spaces to tabs, add useless docblocks

Fully documents the constructors of the processors and the cron tasks.

PHPBB3-10739
This commit is contained in:
Igor Wiedler
2012-09-01 19:17:01 +02:00
parent 7ed7b19a1f
commit 282a80077d
11 changed files with 143 additions and 54 deletions

View File

@@ -12,12 +12,17 @@
*/
if (!defined('IN_PHPBB'))
{
exit;
exit;
}
use Symfony\Component\DependencyInjection\ContainerBuilder;
interface phpbb_di_processor_interface
{
public function process(ContainerBuilder $container);
/**
* Mutate the container.
*
* @param ContainerBuilder $container The container
*/
public function process(ContainerBuilder $container);
}