mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-18 19:01:28 +00:00
291ea47dd3
This might make dependencies easier to find. Change-Id: I158fd9f63f18a2b8da0368ac95d5fb5aa9bca3ff
16 lines
275 B
PHP
16 lines
275 B
PHP
<?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() {
|
|
}
|
|
|
|
}
|