X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiQueryDisabled.php;h=cf0d841eaa293b5bd3fcd928b9a908c4794c0129;hb=698cfad8b9380f070e53dd24475cac9dbb3b401b;hp=6715969aafd46f54a75c7e1736b13150f3026436;hpb=21238992a5d8e8a2dab47568f2d1b3c930347ac8;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiQueryDisabled.php b/includes/api/ApiQueryDisabled.php index 6715969aaf..cf0d841eaa 100644 --- a/includes/api/ApiQueryDisabled.php +++ b/includes/api/ApiQueryDisabled.php @@ -36,10 +36,6 @@ */ class ApiQueryDisabled extends ApiQueryBase { - public function __construct( $main, $action ) { - parent::__construct( $main, $action ); - } - public function execute() { $this->setWarning( "The \"{$this->getModuleName()}\" module has been disabled." ); } @@ -61,8 +57,4 @@ class ApiQueryDisabled extends ApiQueryBase { public function getExamples() { return array(); } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } }