aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/cron/task
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-11-10 16:38:19 +0100
committerIgor Wiedler <igor@wiedler.ch>2012-11-10 16:38:19 +0100
commit798c006e7fe55bc1de30e42a4c25e8c74911c865 (patch)
treea75ecefdc1c5bcf6ca53885fc91d2a9eb02f2bf0 /phpBB/includes/cron/task
parent38e1c4ec5d363900285a6a72ee78f4f2e2943bd0 (diff)
downloadforums-798c006e7fe55bc1de30e42a4c25e8c74911c865.tar
forums-798c006e7fe55bc1de30e42a4c25e8c74911c865.tar.gz
forums-798c006e7fe55bc1de30e42a4c25e8c74911c865.tar.bz2
forums-798c006e7fe55bc1de30e42a4c25e8c74911c865.tar.xz
forums-798c006e7fe55bc1de30e42a4c25e8c74911c865.zip
[ticket/11152] Convert cron_task_collection to generic di_service_collection
PHPBB3-11152
Diffstat (limited to 'phpBB/includes/cron/task')
-rw-r--r--phpBB/includes/cron/task/collection.php49
1 files changed, 0 insertions, 49 deletions
diff --git a/phpBB/includes/cron/task/collection.php b/phpBB/includes/cron/task/collection.php
deleted file mode 100644
index 84607dc28d..0000000000
--- a/phpBB/includes/cron/task/collection.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-/**
-*
-* @package phpBB3
-* @copyright (c) 2011 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\TaggedContainerInterface;
-
-/**
-* Collects cron tasks
-*
-* @package phpBB3
-*/
-class phpbb_cron_task_collection extends ArrayObject
-{
- /**
- * Constructor
- *
- * @param TaggedContainerInterface $container Container object
- */
- public function __construct(TaggedContainerInterface $container)
- {
- $this->container = $container;
- }
-
- /**
- * Add a cron task to the collection
- *
- * @param string $name The service name of the cron task
- * @return null
- */
- public function add($name)
- {
- $task = $this->container->get($name);
- $task->set_name($name);
- $this->offsetSet($name, $task);
- }
-}