summaryrefslogtreecommitdiff
path: root/includes/profiler/ProfilerStub.php
blob: 58c1975ce03ebf89d4d3be193cd16cd43528b19e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * Stub profiling functions
 * @file
 * @ingroup Profiler
 */
class ProfilerStub extends Profiler {
	public function isStub() {
		return true;
	}
	public function profileIn( $fn ) {}
	public function profileOut( $fn ) {}
	public function getOutput() {}
	public function close() {}
}