X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Flanguage%2Falltrans.php;h=931718f5ab8e53614bad1da97138be283f147ebe;hb=e2789019688cc3f3871e0fbccbda3ca10316c624;hp=b537f9b70c53fdd6b1ae92bb26a51863c2527c45;hpb=8fc67e5592f7cd6a44aa470887688c71c6edca68;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/language/alltrans.php b/maintenance/language/alltrans.php index b537f9b70c..931718f5ab 100644 --- a/maintenance/language/alltrans.php +++ b/maintenance/language/alltrans.php @@ -17,15 +17,22 @@ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * http://www.gnu.org/copyleft/gpl.html * + * @file * @ingroup MaintenanceLanguage */ -require_once( __DIR__ . '/../Maintenance.php' ); +require_once __DIR__ . '/../Maintenance.php'; +/** + * Maintenance script that gets all messages as defined by the + * English language file. + * + * @ingroup MaintenanceLanguage + */ class AllTrans extends Maintenance { public function __construct() { parent::__construct(); - $this->mDescription = "Get all messages as defined by the English language file"; + $this->addDescription( 'Get all messages as defined by the English language file' ); } public function execute() { @@ -37,4 +44,4 @@ class AllTrans extends Maintenance { } $maintClass = "AllTrans"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN;