diff options
Diffstat (limited to 'includes/profiler/ProfilerStub.php')
-rw-r--r-- | includes/profiler/ProfilerStub.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/includes/profiler/ProfilerStub.php b/includes/profiler/ProfilerStub.php new file mode 100644 index 00000000..58c1975c --- /dev/null +++ b/includes/profiler/ProfilerStub.php @@ -0,0 +1,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() {} +} |