mediawiki-extensions-Echo/includes/Model/AbstractEntity.php
Reedy 5611662f06 Namespace Model
Depends-On: Id28792658de950b99a8786f881563476def59eba
Change-Id: Ib57ea2db947285946f31fa9912b37181044df9d3
2022-11-10 14:25:42 -07:00

17 lines
246 B
PHP

<?php
namespace MediaWiki\Extension\Notifications\Model;
/**
* Abstract entity for Echo model
*/
abstract class AbstractEntity {
/**
* Convert an entity's property to array
* @return array
*/
abstract public function toDbArray();
}