mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-02 19:36:48 +00:00
12 lines
166 B
PHP
12 lines
166 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Create a stub class for testing the abstract class
|
||
|
*/
|
||
|
class EchoAbstractMapperStub extends EchoAbstractMapper {
|
||
|
|
||
|
public function testMethod() {
|
||
|
}
|
||
|
|
||
|
}
|