mediawiki-extensions-Echo/includes/model/AbstractEntity.php
Kunal Mehta 9d08c96fad Move all PHP code into includes/
Mainly because I was annoyed at m<tab>o<tab>d<tab>u<tab> to reach
modules/.

Change-Id: Ib149cb2e2612ccddd0503f9d0c5d05b554860a00
2015-06-07 18:54:14 -07:00

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();
}