aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/di/processor/interface.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-09-01 19:17:01 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-09-01 19:17:01 +0200
commit282a80077d4630ba59043fffe59e8a7ce8619ecb (patch)
treee2a9af2dd81160a52973034fc386a15075023eab /phpBB/includes/di/processor/interface.php
parent7ed7b19a1f1c3732b561ec3c8a4a39f115b5e6ac (diff)
downloadforums-282a80077d4630ba59043fffe59e8a7ce8619ecb.tar
forums-282a80077d4630ba59043fffe59e8a7ce8619ecb.tar.gz
forums-282a80077d4630ba59043fffe59e8a7ce8619ecb.tar.bz2
forums-282a80077d4630ba59043fffe59e8a7ce8619ecb.tar.xz
forums-282a80077d4630ba59043fffe59e8a7ce8619ecb.zip
[feature/dic] Spaces to tabs, add useless docblocks
Fully documents the constructors of the processors and the cron tasks. PHPBB3-10739
Diffstat (limited to 'phpBB/includes/di/processor/interface.php')
-rw-r--r--phpBB/includes/di/processor/interface.php9
1 files changed, 7 insertions, 2 deletions
diff --git a/phpBB/includes/di/processor/interface.php b/phpBB/includes/di/processor/interface.php
index 51bd85a076..b8563791cc 100644
--- a/phpBB/includes/di/processor/interface.php
+++ b/phpBB/includes/di/processor/interface.php
@@ -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);
}