mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
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();
|
||
|
|
||
|
}
|