Move DatabaseDomain to Rdbms namespace
[mediawiki.git] / tests / phpunit / includes / api / MockApiQueryBase.php
blob9915a38d0a457debe57dce81d5bbbea3a41bdd62
1 <?php
2 class MockApiQueryBase extends ApiQueryBase {
3 private $name;
5 public function execute() {
8 public function __construct( $name = 'mock' ) {
9 $this->name = $name;
12 public function getModuleName() {
13 return $this->name;
16 public function getModulePath() {
17 return 'query+' . $this->getModuleName();