wiki.techinc.nl/tests/phpunit/includes/api/MockApi.php
umherirrender f153998317 Fixed spacing
- Removed double spaces
- Added space after if/switch/foreach
- Removed space on elseif
- Added space around parentheses
- Added newline at end of file
- Removed space before semicolon at end of line

Change-Id: Id40b87e04786c6111e6686d7f7eea1e588bdf37d
2013-11-19 19:03:54 +01:00

20 lines
285 B
PHP

<?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,
);
}
}