API: Overhaul ApiResult, make format=xml not throw, and add json formatversion
[lhc/web/wiklou.git] / tests / phpunit / includes / api / MockApi.php
1 <?php
2
3 class MockApi extends ApiBase {
4 public function execute() {
5 }
6
7 public function __construct() {
8 }
9
10 public function getAllowedParams() {
11 return array(
12 'filename' => null,
13 'enablechunks' => false,
14 'sessionkey' => null,
15 );
16 }
17 }