mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-24 16:04:35 +00:00
c85fe25fe7
Change-Id: I8a02082466ef39db32ffa7562b02db61929346cd
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() {
|
|
}
|
|
|
|
}
|