summaryrefslogtreecommitdiff
path: root/www/wiki/includes/filerepo/TempFileRepo.php
blob: c9a6b592c6003d8c2dd3cc6d5d08cc76fe7f6e2d (plain)
1
2
3
4
5
6
7
8
9
<?php
/**
 * FileRepo for temporary files created via FileRepo::getTempRepo()
 */
class TempFileRepo extends FileRepo {
	public function getTempRepo() {
		throw new MWException( "Cannot get a temp repo from a temp repo." );
	}
}