mediawiki-extensions-Echo/tests/phpunit/Mapper/EchoAbstractMapperStub.php

16 lines
275 B
PHP
Raw Normal View History

<?php
namespace MediaWiki\Extension\Notifications\Test;
use MediaWiki\Extension\Notifications\Mapper\AbstractMapper;
/**
* Create a stub class for testing the abstract class
*/
class EchoAbstractMapperStub extends AbstractMapper {
public function testMethod() {
}
}