Allow PHP version check to execute on older versions of PHP

A change to update.php used the null coalesce (??) operator.
While this is normally fine, the code in question executes
before the PHP version check, and causes an unfriendly PHP
error rather than the intended helpful error. Use the older-style
isset() call instead, so that the PHP version check will get
a chance to execute.

Bug: T213893
Change-Id: I22e4a24bed9e0b29e08afc7b9468e7bfd81d7d57
This commit is contained in:
Bill Pirkle 2019-07-10 21:16:49 -05:00
parent 50a72860b6
commit b8b2514940

View file

@ -247,17 +247,26 @@ class UpdateMediaWiki extends Maintenance {
];
}
/**
* @throws FatalError
* @throws MWException
* @suppress PhanPluginDuplicateConditionalNullCoalescing
*/
public function validateParamsAndArgs() {
// Allow extensions to add additional params.
$params = [];
Hooks::run( 'MaintenanceUpdateAddParams', [ &$params ] );
// This executes before the PHP version check, so don't use null coalesce (??).
// Keeping this compatible with older PHP versions lets us reach the code that
// displays a more helpful error.
foreach ( $params as $name => $param ) {
$this->addOption(
$name,
$param['desc'],
$param['require'] ?? false,
$param['withArg'] ?? false,
$param['shortName'] ?? false,
isset( $param['require'] ) ? $param['require'] : false,
isset( $param['withArg'] ) ? $param['withArg'] : false,
isset( $param['shortName'] ) ? $param['shortName'] : false,
$param['multiOccurrence'] ?? false
);
}