aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/cron/run.php
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-06-15 12:26:23 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-15 16:39:36 +0200
commit8966e4a26970bb082fc02e8e4e57144567e95d31 (patch)
treec01f7ad84b56776a861dfe61c14412d12fdff222 /phpBB/phpbb/console/command/cron/run.php
parent413754af1f2d10aae366f8255d0d91ec7e6fd878 (diff)
downloadforums-8966e4a26970bb082fc02e8e4e57144567e95d31.tar
forums-8966e4a26970bb082fc02e8e4e57144567e95d31.tar.gz
forums-8966e4a26970bb082fc02e8e4e57144567e95d31.tar.bz2
forums-8966e4a26970bb082fc02e8e4e57144567e95d31.tar.xz
forums-8966e4a26970bb082fc02e8e4e57144567e95d31.zip
[ticket/12715] Update console command cron:* comments
PHPBB3-12715
Diffstat (limited to 'phpBB/phpbb/console/command/cron/run.php')
-rw-r--r--phpBB/phpbb/console/command/cron/run.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/phpBB/phpbb/console/command/cron/run.php b/phpBB/phpbb/console/command/cron/run.php
index 1029a2e085..32774bebe4 100644
--- a/phpBB/phpbb/console/command/cron/run.php
+++ b/phpBB/phpbb/console/command/cron/run.php
@@ -15,7 +15,6 @@ namespace phpbb\console\command\cron;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputArgument;
-use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
class run extends \phpbb\console\command\command
@@ -35,7 +34,7 @@ class run extends \phpbb\console\command\command
* @param \phpbb\cron\manager $cron_manager The cron manager containing
* the cron tasks to be executed.
* @param \phpbb\lock\db $lock_db The lock for accessing database.
- * @param \phobb\user $user The user object (used to get language information)
+ * @param \phpbb\user $user The user object (used to get language information)
*/
public function __construct(\phpbb\cron\manager $cron_manager, \phpbb\lock\db $lock_db, \phpbb\user $user)
{
@@ -102,7 +101,7 @@ class run extends \phpbb\console\command\command
}
}
- /*
+ /**
* Executes all ready cron tasks.
*
* If verbose mode is set, an info message will be printed if there is no task to
@@ -140,7 +139,7 @@ class run extends \phpbb\console\command\command
return 0;
}
- /*
+ /**
* Executes a given cron task, if it is ready.
*
* If there is a task whose name matches $task_name, it is run and 0 is returned.