X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiFormatDbg.php;h=1b2e02c9add026392680319e5cb2507f27cc31ed;hb=911d50b022587b966fadf8374b7bd739b7830732;hp=92619f761af965a830feffe6c65ec1a3c293ebf0;hpb=2e7d867478f1c9a34994236555bc493535da5da8;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiFormatDbg.php b/includes/api/ApiFormatDbg.php index 92619f761a..1b2e02c9ad 100644 --- a/includes/api/ApiFormatDbg.php +++ b/includes/api/ApiFormatDbg.php @@ -4,7 +4,7 @@ * * Created on Oct 22, 2006 * - * Copyright © 2008 Roan Kattouw .@gmail.com + * Copyright © 2008 Roan Kattouw ".@gmail.com" * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,10 +30,6 @@ */ class ApiFormatDbg extends ApiFormatBase { - public function __construct( $main, $format ) { - parent::__construct( $main, $format ); - } - public function getMimeType() { // This looks like it should be text/plain, but IE7 is so // brain-damaged it tries to parse text/plain as HTML if it @@ -48,8 +44,4 @@ class ApiFormatDbg extends ApiFormatBase { public function getDescription() { return 'Output data in PHP\'s var_export() format' . parent::getDescription(); } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } }