- 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
20 lines
285 B
PHP
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,
|
|
);
|
|
}
|
|
}
|