wiki.techinc.nl/tests/phpunit/includes/api/MockApi.php

20 lines
284 B
PHP
Raw Normal View History

<?php
class MockApi extends ApiBase {
public function execute() {
}
public function getVersion() {
}
public function __construct() {
}
public function getAllowedParams() {
return array(
'filename' => null,
'enablechunks' => false,
'sessionkey' => null,
);
}
}