wiki.techinc.nl/includes/filerepo/TempFileRepo.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
296 B
PHP
Raw Normal View History

<?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." );
}
}