17 lines
234 B
PHP
17 lines
234 B
PHP
|
|
<?
|
||
|
|
|
||
|
|
/*
|
||
|
|
* @package Mediawiki
|
||
|
|
* @version $Id$
|
||
|
|
*
|
||
|
|
* This class should provide methods for message
|
||
|
|
* cache key hints for various scopes */
|
||
|
|
|
||
|
|
class MessageCacheHints {
|
||
|
|
function get($scope="global") {
|
||
|
|
return array('TODO');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|