mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/PageImages
synced 2024-11-15 20:09:54 +00:00
b14685b8d5
Leave alias for PageImages as it's used elsewhere... Change-Id: I4a3fa5f8aaafd87c78b03f04369a73f4b4f1b189
30 lines
544 B
PHP
30 lines
544 B
PHP
<?php
|
|
|
|
namespace PageImages\Tests;
|
|
|
|
use ApiPageSet;
|
|
use PageImages\ApiQueryPageImages;
|
|
|
|
class ApiQueryPageImagesProxyMock extends ApiQueryPageImages {
|
|
|
|
/** @inheritDoc */
|
|
public function __construct( ApiPageSet $pageSet ) {
|
|
$this->pageSet = $pageSet;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public function getPageSet() {
|
|
return $this->pageSet;
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public function getTitles() {
|
|
return parent::getTitles();
|
|
}
|
|
|
|
/** @inheritDoc */
|
|
public static function getPropNames( $license ) {
|
|
return parent::getPropNames( $license );
|
|
}
|
|
}
|