X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2Fprofiler%2FProfilerStub.php;h=3697f352aefd15e98697576a9a25d5de3fcc9e1b;hb=edba2e008c079f4d51abc70f2c98c1dc8009a900;hp=a498860e2f90c67aa0a97f906f41dc834b42f159;hpb=73737df4a4b96e4bfacfa5eae13a7926ba917502;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/profiler/ProfilerStub.php b/includes/profiler/ProfilerStub.php index a498860e2f..3697f352ae 100644 --- a/includes/profiler/ProfilerStub.php +++ b/includes/profiler/ProfilerStub.php @@ -30,10 +30,15 @@ class ProfilerStub extends Profiler { public function isStub() { return true; } + public function isPersistent() { + return false; + } public function profileIn( $fn ) {} public function profileOut( $fn ) {} public function getOutput() {} public function close() {} public function logData() {} public function getCurrentSection() { return ''; } + public function transactionWritingIn( $server, $db ) {} + public function transactionWritingOut( $server, $db ) {} }