summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/Maps/src/FileUrlFinder.php
blob: c4894d53b3d7df57c37d1627a6588fbe4d125d01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

declare( strict_types = 1 );

namespace Maps;

/**
 * @licence GNU GPL v2+
 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
 */
interface FileUrlFinder {

	/**
	 * Resolves the url of images provided as wiki page; leaves others alone.
	 */
	public function getUrlForFileName( string $fileName ): string;

}