* $/ => \n
[lhc/web/wiklou.git] / includes / MessageCacheHints.php
1 <?
2 /**
3 * @package MediaWiki
4 * @subpackage Cache
5 */
6
7 /**
8 * @package MediaWiki
9 *
10 * This class should provide methods for message cache key hints for various
11 * scopes
12 */
13 class MessageCacheHints {
14 function get($scope='global') {
15 return array('TODO');
16 }
17 }
18 ?>