Merge "Add release notes entry for wgRelevantArticleId"
[lhc/web/wiklou.git] / includes / profiler / ProfilerStub.php
index 1d3b65d..6fc74ef 100644 (file)
@@ -31,36 +31,26 @@ class ProfilerStub extends Profiler {
                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 scopedProfileIn( $section ) {
+               return null;
        }
 
-       public function getCurrentSection() {
-               return '';
+       public function getFunctionStats() {
        }
 
-       public function transactionWritingIn( $server, $db, $id = '' ) {
+       public function getOutput() {
        }
 
-       public function transactionWritingOut( $server, $db, $id = '' ) {
+       public function close() {
        }
 
-       public function getRawData() {
-               return array();
+       public function getCurrentSection() {
+               return '';
        }
 }