Siebrand has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/275533

Change subject: Pass-by-reference is not needed
......................................................................

Pass-by-reference is not needed

Change-Id: I4f2bff4d7d15ab15c63840ef9d73243367a80a09
---
M CharInsert.body.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/CharInsert 
refs/changes/33/275533/1

diff --git a/CharInsert.body.php b/CharInsert.body.php
index b8edb5c..fd04ba5 100644
--- a/CharInsert.body.php
+++ b/CharInsert.body.php
@@ -1,7 +1,7 @@
 <?php
 
 class CharInsert {
-       public static function onParserFirstCallInit( Parser &$parser ) {
+       public static function onParserFirstCallInit( Parser $parser ) {
                $parser->setHook( 'charinsert', 'CharInsert::charInsertHook' );
                return true;
        }

-- 
To view, visit https://gerrit.wikimedia.org/r/275533
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4f2bff4d7d15ab15c63840ef9d73243367a80a09
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CharInsert
Gerrit-Branch: master
Gerrit-Owner: Siebrand <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to