From 8d7fec1acc9cfe2e346483afe98c146573c2e9cb Mon Sep 17 00:00:00 2001 From: Jack Phoenix Date: Sun, 21 Feb 2010 18:09:00 +0000 Subject: [PATCH] ApiDisabled.php: fix copyright symbol, coding style tweaks --- includes/api/ApiDisabled.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/includes/api/ApiDisabled.php b/includes/api/ApiDisabled.php index a19a6d4f38..64155ed06c 100644 --- a/includes/api/ApiDisabled.php +++ b/includes/api/ApiDisabled.php @@ -1,10 +1,10 @@ .@home.nl + * Copyright © 2008 Roan Kattouw .@home.nl * * 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 @@ -24,7 +24,7 @@ if ( !defined( 'MEDIAWIKI' ) ) { // Eclipse helper - will be ignored in production - require_once ( "ApiBase.php" ); + require_once( "ApiBase.php" ); } /** @@ -40,7 +40,7 @@ if ( !defined( 'MEDIAWIKI' ) ) { class ApiDisabled extends ApiBase { public function __construct( $main, $action ) { - parent :: __construct( $main, $action ); + parent::__construct( $main, $action ); } public function execute() { @@ -52,11 +52,11 @@ class ApiDisabled extends ApiBase { } public function getAllowedParams() { - return array (); + return array(); } public function getParamDescription() { - return array (); + return array(); } public function getDescription() { @@ -66,7 +66,7 @@ class ApiDisabled extends ApiBase { } protected function getExamples() { - return array (); + return array(); } public function getVersion() { -- 2.20.1