Revert r101492, broken, see CR. Also revert followup r101496.
[mediawiki.git] / includes / profiler / ProfilerStub.php
blob58c1975ce03ebf89d4d3be193cd16cd43528b19e
1 <?php
2 /**
3 * Stub profiling functions
4 * @file
5 * @ingroup Profiler
6 */
7 class ProfilerStub extends Profiler {
8 public function isStub() {
9 return true;
11 public function profileIn( $fn ) {}
12 public function profileOut( $fn ) {}
13 public function getOutput() {}
14 public function close() {}