Merge changes I5d11a642,I4ed191bd
[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 getVersion() {
8 }
9
10 public function __construct() {
11 }
12
13 public function getAllowedParams() {
14 return array(
15 'filename' => null,
16 'enablechunks' => false,
17 'sessionkey' => null,
18 );
19 }
20 }