mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 03:35:01 +00:00
ac6622711b
All files containing more than one PHP class were split into multiple files. extension.json was updated to match new class locations. phpcs `OneObjectStructurePerFile.MultipleFound` rule was re-enabled. Bug: T177809 Change-Id: I6fc2ec9cc35e6bac5a7c44d94b0f1b1b40e6dba5
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() {
|
|
}
|
|
|
|
}
|