wiki.techinc.nl/tests/phpunit/includes/api/MockApiQueryBase.php
Thiemo Kreuz 50dca8ed1e Replace some oldskool @see with @inheritDoc
This patch also adds some missing newlines at the beginning of files.

Change-Id: Ifcdf75396c96f17b7bfb103f54bfdf4ba4dfbccc
2019-11-08 18:00:27 +00:00

20 lines
324 B
PHP

<?php
class MockApiQueryBase extends ApiQueryBase {
private $name;
public function execute() {
}
public function __construct( $name = 'mock' ) {
$this->name = $name;
}
public function getModuleName() {
return $this->name;
}
public function getModulePath() {
return 'query+' . $this->getModuleName();
}
}