mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-12-04 12:18:30 +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() {
|
||
|
}
|
||
|
|
||
|
}
|