summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/src/DataValues/ValueFormatters/ValueFormatter.php
blob: 921570be0f294a437c0c118336b97c7e23f1a113 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace SMW\DataValues\ValueFormatters;

/**
 * @license GNU GPL v2+
 * @since 2.4
 *
 * @author mwjames
 */
interface ValueFormatter {

	/**
	 * @since 2.4
	 *
	 * @param mixed $type
	 * @param mixed|null $linker
	 *
	 * @return mixed
	 * @throws RuntimeException
	 */
	public function format( $type, $linker = null );

}