MediaWiki master
TempFileRepo.php
Go to the documentation of this file.
1<?php
2
3namespace MediaWiki\FileRepo;
4
5use LogicException;
6
13class TempFileRepo extends FileRepo {
17 public function getTempRepo() {
18 throw new LogicException( "Cannot get a temp repo from a temp repo." );
19 }
20}
21
23class_alias( TempFileRepo::class, 'TempFileRepo' );
Base class for file repositories.
Definition FileRepo.php:68
FileRepo for temporary files created by FileRepo::getTempRepo()