summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/LocalisationUpdate/fetcher/Fetcher.php
blob: 9ff79584bca2598fc2ea7277cf7474f8096a2ff1 (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
25
26
27
28
<?php
/**
 * @file
 * @author Niklas Laxström
 * @license GPL-2.0+
 */

namespace LocalisationUpdate;

/**
 * Interface for classes which fetch files over different protocols and ways.
 */
interface Fetcher {
	/**
	 * Fetches a single resource.
	 *
	 * @return bool|string False on failure.
	 */
	public function fetchFile( $url );

	/**
	 * Fetch a list of resources. This has the benefit of being able to pick up
	 * new languages as they appear if languages are stored in separate files.
	 *
	 * @return array
	 */
	public function fetchDirectory( $pattern );
}