mediawiki-extensions-Echo/tests/phpunit/Mapper/EchoAbstractMapperStub.php
Reedy c85fe25fe7 Namespace Mapper
Change-Id: I8a02082466ef39db32ffa7562b02db61929346cd
2022-11-04 18:05:34 +00:00

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() {
}
}