X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiFormatNone.php;h=dc623ac1e9eab0d8da296c6ec1bf43728664eccd;hb=6bcdf27c748d70369ff301a5f586fd6a9e2f09a7;hp=31c90e101a587e63f28dc04b8b4aa86e8ee5952c;hpb=1162a32ef22973ba3c92b7b91c146deef217be10;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiFormatNone.php b/includes/api/ApiFormatNone.php index 31c90e101a..dc623ac1e9 100644 --- a/includes/api/ApiFormatNone.php +++ b/includes/api/ApiFormatNone.php @@ -4,7 +4,7 @@ * * Created on Oct 22, 2006 * - * Copyright © 2006 Yuri Astrakhan @gmail.com + * Copyright © 2006 Yuri Astrakhan "@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,22 +30,10 @@ */ class ApiFormatNone extends ApiFormatBase { - public function __construct( $main, $format ) { - parent::__construct( $main, $format ); - } - public function getMimeType() { return 'text/plain'; } public function execute() { } - - public function getDescription() { - return 'Output nothing' . parent::getDescription(); - } - - public function getVersion() { - return __CLASS__ . ': $Id$'; - } }