mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-12 09:26:05 +00:00
9d08c96fad
Mainly because I was annoyed at m<tab>o<tab>d<tab>u<tab> to reach modules/. Change-Id: Ib149cb2e2612ccddd0503f9d0c5d05b554860a00
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();
|
|
|
|
}
|