Stop passing objects by reference

Bug: T193950
Change-Id: I1695035499c6e6a612cbf2ed8090bbe7bb04bfea
This commit is contained in:
Max Semenik 2019-11-14 23:34:06 -08:00
parent 258a2dade3
commit ff039d713e

View file

@ -13,10 +13,10 @@ class InputBoxHooks {
/**
* Initialization
* @param Parser &$parser
* @param Parser $parser
* @return true
*/
public static function register( Parser &$parser ) {
public static function register( Parser $parser ) {
// Register the hook with the parser
$parser->setHook( 'inputbox', [ 'InputBoxHooks', 'render' ] );