Siebrand has uploaded a new change for review.

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


Change subject: Remove superfluous parameters with default values
......................................................................

Remove superfluous parameters with default values

The parameters 2 and 3 to the parent constructor have default values and
can be omitted.

Change-Id: Ibe703564cf9c6dd65d81c028be1014eafc5a81cc
---
M SpecialApiSandbox.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ApiSandbox 
refs/changes/13/96213/1

diff --git a/SpecialApiSandbox.php b/SpecialApiSandbox.php
index 3111448..ace15db 100644
--- a/SpecialApiSandbox.php
+++ b/SpecialApiSandbox.php
@@ -10,7 +10,7 @@
         * Constructor
         */
        public function __construct() {
-               parent::__construct( 'ApiSandbox', '', true );
+               parent::__construct( 'ApiSandbox' );
        }
 
        /**

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibe703564cf9c6dd65d81c028be1014eafc5a81cc
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ApiSandbox
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