mediawiki-extensions-Echo/model/AbstractEntity.php
Bsitu 483e7e80d5 Revert "Revert "Merge remote-tracking branch 'gerrit/master' into two_tabs""
This reverts commit b9574748a4.

Change-Id: I8a8334db446dd6a2d5363a1f6ab12369b813b026
2014-08-14 18:46:26 +00: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();
}