MediaWiki  REL1_20
ProfilerStub.php
Go to the documentation of this file.
00001 <?php
00029 class ProfilerStub extends Profiler {
00030         public function isStub() {
00031                 return true;
00032         }
00033         public function isPersistent() {
00034                 return false;
00035         }
00036         public function profileIn( $fn ) {}
00037         public function profileOut( $fn ) {}
00038         public function getOutput() {}
00039         public function close() {}
00040         public function logData() {}
00041         public function getCurrentSection() { return ''; }
00042 }