X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiFormatNone.php;h=78023af3d79831f6569e9d85c0971373b88a7d38;hb=b2fba3f27f2bb49eaa9d8e1d3857c9e67c883263;hp=b3bde378516483ca2ec3ea70aa51df87b366fedd;hpb=bcda3de17cbe46994c0e6c7cf614f9c7e82542cb;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiFormatNone.php b/includes/api/ApiFormatNone.php index b3bde37851..78023af3d7 100644 --- a/includes/api/ApiFormatNone.php +++ b/includes/api/ApiFormatNone.php @@ -30,10 +30,6 @@ */ class ApiFormatNone extends ApiFormatBase { - public function __construct( $main, $format ) { - parent::__construct( $main, $format ); - } - public function getMimeType() { return 'text/plain'; } @@ -44,8 +40,4 @@ class ApiFormatNone extends ApiFormatBase { public function getDescription() { return 'Output nothing' . parent::getDescription(); } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } }