mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
483e7e80d5
This reverts commit b9574748a4
.
Change-Id: I8a8334db446dd6a2d5363a1f6ab12369b813b026
15 lines
198 B
PHP
15 lines
198 B
PHP
<?php
|
|
|
|
/**
|
|
* Abstract entity for Echo model
|
|
*/
|
|
abstract class EchoAbstractEntity {
|
|
|
|
/**
|
|
* Convert an entity's property to array
|
|
* @return array
|
|
*/
|
|
abstract public function toDbArray();
|
|
|
|
}
|