aboutsummaryrefslogtreecommitdiffstats
path: root/includes/filerepo/TempFileRepo.php
blob: a0d5be04d6ccc96ded91aa7c80a94a926243b405 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * FileRepo for temporary files created by FileRepo::getTempRepo()
 *
 * @internal
 * @ingroup FileRepo
 */
class TempFileRepo extends FileRepo {
	/**
	 * @return never
	 */
	public function getTempRepo() {
		throw new LogicException( "Cannot get a temp repo from a temp repo." );
	}
}