summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Evans <grknight@gentoo.org>2020-12-04 20:38:10 -0500
committerBrian Evans <grknight@gentoo.org>2020-12-04 20:38:10 -0500
commitf38252698b373676421c216fdec9b33a0f5cd1fc (patch)
treee5a7a359b3bab517e38e039f6fdd23fd4ee00e20
parentGentooToolbox: Fix up class until it can be called natively (diff)
downloadextensions-f38252698b373676421c216fdec9b33a0f5cd1fc.tar.gz
extensions-f38252698b373676421c216fdec9b33a0f5cd1fc.tar.bz2
extensions-f38252698b373676421c216fdec9b33a0f5cd1fc.zip
Comment out implements while more research is done
Signed-off-by: Brian Evans <grknight@gentoo.org>
-rw-r--r--GentooPackages/GentooPackages.php2
-rw-r--r--GentooToolbox/localizedmsg/LocalizedMsg.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/GentooPackages/GentooPackages.php b/GentooPackages/GentooPackages.php
index 8ee2e4cd..978ca50f 100644
--- a/GentooPackages/GentooPackages.php
+++ b/GentooPackages/GentooPackages.php
@@ -1,6 +1,6 @@
<?php
-class GentooPackages implements MediaWiki\Hook\ParserFirstCallInitHook {
+class GentooPackages { // implements MediaWiki\Hook\ParserFirstCallInitHook {
public static function packageInfo($input, array $args, Parser $parser, PPFrame $frame) {
$atom = $args['atom'];
$type = $args['type'];
diff --git a/GentooToolbox/localizedmsg/LocalizedMsg.php b/GentooToolbox/localizedmsg/LocalizedMsg.php
index ed952af9..8ca2191d 100644
--- a/GentooToolbox/localizedmsg/LocalizedMsg.php
+++ b/GentooToolbox/localizedmsg/LocalizedMsg.php
@@ -1,6 +1,6 @@
<?php
-class GTBXLocalizedMsg implements MediaWiki\Hook\ParserFirstCallInitHook {
+class GTBXLocalizedMsg { // implements MediaWiki\Hook\ParserFirstCallInitHook {
public static function onParserFirstCallInit ( $parser ) {
$parser->setFunctionHook( 'msg', 'GTBXLocalizedMsg::LocalizedMsgParserFunction' );
return true;