Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / filerepo / TempFileRepo.php
bloba0d5be04d6ccc96ded91aa7c80a94a926243b405
1 <?php
2 /**
3 * FileRepo for temporary files created by FileRepo::getTempRepo()
5 * @internal
6 * @ingroup FileRepo
7 */
8 class TempFileRepo extends FileRepo {
9 /**
10 * @return never
12 public function getTempRepo() {
13 throw new LogicException( "Cannot get a temp repo from a temp repo." );