mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-14 11:16:16 +00:00
5611662f06
Depends-On: Id28792658de950b99a8786f881563476def59eba Change-Id: Ib57ea2db947285946f31fa9912b37181044df9d3
17 lines
246 B
PHP
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();
|
|
|
|
}
|