Translate extension for MediaWiki
 
Loading...
Searching...
No Matches
BaseMaintenanceScript.php
1<?php
2declare( strict_types = 1 );
3
5
6use Maintenance;
7
16abstract class BaseMaintenanceScript extends Maintenance {
17 protected const OPTIONAL = false;
18 protected const REQUIRED = true;
19 protected const HAS_ARG = true;
20 protected const NO_ARG = false;
21}
Constants for making code for maintenance scripts more readable.
Essentially random collection of helper functions, similar to GlobalFunctions.php.
Definition Utilities.php:31