%PDF- %PDF-
| Direktori : /www/varak.net/wiki.varak.net/tests/phpunit/includes/api/ |
| Current File : //www/varak.net/wiki.varak.net/tests/phpunit/includes/api/MockApiQueryBase.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();
}
}