Merge "filebackend: cleaned up the FileBackend constructor"
[lhc/web/wiklou.git] / includes / profiler / ProfilerStub.php
index a498860..3697f35 100644 (file)
@@ -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 ) {}
 }