MediaWiki  REL1_20
NullRepo.php
Go to the documentation of this file.
00001 <?php
00028 class NullRepo extends FileRepo {
00029 
00033         function __construct( $info ) {}
00034 
00035         protected function assertWritableRepo() {
00036                 throw new MWException( get_class( $this ) . ': write operations are not supported.' );
00037         }
00038 }