Import: Handle uploads with sha1 starting with 0 properly
[mediawiki.git] / tests / phpunit / includes / api / MockApiQueryBase.php
blobf5b50e5a59193fbea38245c2917a6e21fa2f2421
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;