mediawiki-extensions-Echo/includes/EchoContainmentList.php
Phantom42 254cf8360b Fix multiple PHP class declarations in one file
All files containing more than one PHP class were split into
multiple files.

extension.json was updated to match new class locations.

Bug: T177809
Change-Id: I4e7d8f02164c3048c41c4c9fbe4be18a99e7abaa
2018-01-21 21:17:53 +00:00

19 lines
494 B
PHP

<?php
/**
* Interface providing list of contained values and an optional cache key to go along with it.
*/
interface EchoContainmentList {
/**
* @return array The values contained within this list.
*/
public function getValues();
/**
* @return string A string suitable for appending to the cache key prefix to facilitate
* cache busting when the underlying data changes, or a blank string if
* not relevant.
*/
public function getCacheKey();
}