In the hhvm log bucket there are a couple of related errors:
Warning: Invalid operand type was used: implode() expects a container as one of the arguments
in /srv/mediawiki/php-1.32.0-wmf.20/includes/parser/ParserOutput.php on line 428
Warning: array_keys() expects parameter 1 to be an array or collection
in /srv/mediawiki/php-1.32.0-wmf.20/includes/parser/ParserOutput.php on line 428They are coming from:
420 /** 421 * Returns the class (or classes) to be used with the wrapper div for this otuput. 422 * If there is no wrapper class given, no wrapper div should be added. 423 * The wrapper div is added automatically by getText(). 424 * 425 * @return string 426 */ 427 public function getWrapperDivClass() { 428 return implode( ' ', array_keys( $this->mWrapperDivClasses ) ); 429 } 430
Apparently introduced in 0dc7ba02b4483700a2fc3ab6bf76a3dd072ef054 https://gerrit.wikimedia.org/r/c/mediawiki/core/+/455865