Index: trunk/phase3/includes/api/ApiDisabled.php |
— | — | @@ -1,10 +1,10 @@ |
2 | 2 | <?php |
3 | 3 | |
4 | | -/* |
| 4 | +/** |
5 | 5 | * Created on Sep 25, 2008 |
6 | 6 | * API for MediaWiki 1.8+ |
7 | 7 | * |
8 | | - * Copyright (C) 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl |
| 8 | + * Copyright © 2008 Roan Kattouw <Firstname>.<Lastname>@home.nl |
9 | 9 | * |
10 | 10 | * This program is free software; you can redistribute it and/or modify |
11 | 11 | * it under the terms of the GNU General Public License as published by |
— | — | @@ -24,7 +24,7 @@ |
25 | 25 | |
26 | 26 | if ( !defined( 'MEDIAWIKI' ) ) { |
27 | 27 | // Eclipse helper - will be ignored in production |
28 | | - require_once ( "ApiBase.php" ); |
| 28 | + require_once( "ApiBase.php" ); |
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
— | — | @@ -40,7 +40,7 @@ |
41 | 41 | class ApiDisabled extends ApiBase { |
42 | 42 | |
43 | 43 | public function __construct( $main, $action ) { |
44 | | - parent :: __construct( $main, $action ); |
| 44 | + parent::__construct( $main, $action ); |
45 | 45 | } |
46 | 46 | |
47 | 47 | public function execute() { |
— | — | @@ -52,11 +52,11 @@ |
53 | 53 | } |
54 | 54 | |
55 | 55 | public function getAllowedParams() { |
56 | | - return array (); |
| 56 | + return array(); |
57 | 57 | } |
58 | 58 | |
59 | 59 | public function getParamDescription() { |
60 | | - return array (); |
| 60 | + return array(); |
61 | 61 | } |
62 | 62 | |
63 | 63 | public function getDescription() { |
— | — | @@ -66,7 +66,7 @@ |
67 | 67 | } |
68 | 68 | |
69 | 69 | protected function getExamples() { |
70 | | - return array (); |
| 70 | + return array(); |
71 | 71 | } |
72 | 72 | |
73 | 73 | public function getVersion() { |