aboutsummaryrefslogtreecommitdiffstats
path: root/maintenance/showJobs.php
diff options
context:
space:
mode:
authorAlexandre Emsenhuber <ialex.wiki@gmail.com>2012-09-02 20:33:22 +0200
committerAlexandre Emsenhuber <ialex.wiki@gmail.com>2012-09-02 20:33:22 +0200
commita75b6d53cd5480e8274f40f47172f311b04d0b3f (patch)
treeb98134b0e16d5d24c202ef0b0ca46406a1fff1f0 /maintenance/showJobs.php
parent52ee390117d58f37351a7c060ebc80ea4300aa1b (diff)
downloadmediawikicore-a75b6d53cd5480e8274f40f47172f311b04d0b3f.tar.gz
mediawikicore-a75b6d53cd5480e8274f40f47172f311b04d0b3f.zip
Improve documentation of maintenance scripts.
Also contains a fix for Ia5a38311 (fae0550). Change-Id: I630c83b48b66c5d8c97411082cabd731f316f42d
Diffstat (limited to 'maintenance/showJobs.php')
-rw-r--r--maintenance/showJobs.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/maintenance/showJobs.php b/maintenance/showJobs.php
index edcbdd63ee1b..1dceb7907f0a 100644
--- a/maintenance/showJobs.php
+++ b/maintenance/showJobs.php
@@ -1,9 +1,9 @@
<?php
/**
- * Based on runJobs.php
- *
* Report number of jobs currently waiting in master database.
*
+ * Based on runJobs.php
+ *
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
@@ -19,6 +19,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
+ * @file
* @ingroup Maintenance
* @author Tim Starling
* @author Antoine Musso
@@ -26,6 +27,12 @@
require_once( __DIR__ . '/Maintenance.php' );
+/**
+ * Maintenance script that reports the number of jobs currently waiting
+ * in master database.
+ *
+ * @ingroup Maintenance
+ */
class ShowJobs extends Maintenance {
public function __construct() {
parent::__construct();