Merge "xhprof: Guard against division by 0 when computing percentages"
[lhc/web/wiklou.git] / includes / profiler / SectionProfiler.php
index 89eebbe..5591c99 100644 (file)
@@ -59,7 +59,7 @@ class SectionProfiler {
                $this->profileInInternal( $section );
 
                $that = $this;
-               return new ScopedCallback( function() use ( $that, $section ) {
+               return new ScopedCallback( function () use ( $that, $section ) {
                        $that->profileOutInternal( $section );
                } );
        }