Yaffs site version 1.1
[yaffs-website] / vendor / twig / twig / lib / Twig / Profiler / Dumper / Blackfire.php
index 6be67edf99419beb4d40091c5bd791686201e587..7a33baf2d670b3ba7367a3aa170e81a6a1ee71cc 100644 (file)
@@ -22,7 +22,7 @@ class Twig_Profiler_Dumper_Blackfire
         $this->dumpProfile('main()', $profile, $data);
         $this->dumpChildren('main()', $profile, $data);
 
-        $start = microtime(true);
+        $start = sprintf('%f', microtime(true));
         $str = <<<EOF
 file-format: BlackfireProbe
 cost-dimensions: wt mu pmu
@@ -68,3 +68,5 @@ EOF;
         }
     }
 }
+
+class_alias('Twig_Profiler_Dumper_Blackfire', 'Twig\Profiler\Dumper\BlackfireDumper', false);