Move ResultWrapper subclasses to Rdbms
[mediawiki.git] / tests / phpunit / includes / api / MockApi.php
blob1407c10d9314cf32de4fb91dc1ddf8e829f928d0
1 <?php
3 class MockApi extends ApiBase {
4 public $warnings = [];
6 public function execute() {
9 public function __construct() {
12 public function getModulePath() {
13 return $this->getModuleName();
16 public function addWarning( $warning, $code = null, $data = null ) {
17 $this->warnings[] = $warning;
20 public function getAllowedParams() {
21 return [
22 'filename' => null,
23 'enablechunks' => false,
24 'sessionkey' => null,