From 0fd8f0201d843b0b4a2de614c9be2b060d1787fc Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Tue, 13 May 2008 02:01:47 +0000 Subject: minor source formatting --- system/libraries/Benchmark.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'system/libraries/Benchmark.php') diff --git a/system/libraries/Benchmark.php b/system/libraries/Benchmark.php index f83e86482..899350bf7 100644 --- a/system/libraries/Benchmark.php +++ b/system/libraries/Benchmark.php @@ -70,23 +70,23 @@ class CI_Benchmark { { return '{elapsed_time}'; } - + if (! isset($this->marker[$point1])) { return ''; } - + if (! isset($this->marker[$point2])) { $this->marker[$point2] = microtime(); } - + list($sm, $ss) = explode(' ', $this->marker[$point1]); list($em, $es) = explode(' ', $this->marker[$point2]); return number_format(($em + $es) - ($sm + $ss), $decimals); } - + // -------------------------------------------------------------------- /** @@ -108,6 +108,6 @@ class CI_Benchmark { } // END CI_Benchmark class - -/* End of file Benchmark.php */ + +/* End of file Benchmark.php */ /* Location: ./system/libraries/Benchmark.php */ \ No newline at end of file -- cgit v1.2.3-24-g4f1b