mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-01 02:46:46 +00:00
14 lines
224 B
PHP
14 lines
224 B
PHP
|
<?php
|
||
|
|
||
|
use MediaWiki\Extension\Notifications\Mapper\AbstractMapper;
|
||
|
|
||
|
/**
|
||
|
* Create a stub class for testing the abstract class
|
||
|
*/
|
||
|
class EchoAbstractMapperStub extends AbstractMapper {
|
||
|
|
||
|
public function testMethod() {
|
||
|
}
|
||
|
|
||
|
}
|