Completed
Push — master ( 4e7553...47271c )
by Simon
02:20
created
src/Logger/CLog.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     /**
128 128
      * Returns load time of the page
129 129
      *
130
-     * @return The page load time.
130
+     * @return double page load time.
131 131
      *
132 132
      */
133 133
     public function pageLoadTime()
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     /**
142 142
      * Get the memory peak.
143 143
      *
144
-     * @return The memory peak.
144
+     * @return double memory peak.
145 145
      *
146 146
      */
147 147
     public function memoryPeak()
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -39,12 +39,12 @@
 block discarded – undo
39 39
     {
40 40
         $now = microtime(true);
41 41
         $this->timestamp[] = array(
42
-          'domain'  => $domain,
43
-          'where'   => $where,
44
-          'comment' => $comment,
45
-          'when'    => $now,
46
-          'memory'  => memory_get_usage(true),
47
-          'duration'=> 0,
42
+            'domain'  => $domain,
43
+            'where'   => $where,
44
+            'comment' => $comment,
45
+            'when'    => $now,
46
+            'memory'  => memory_get_usage(true),
47
+            'duration'=> 0,
48 48
         );
49 49
 
50 50
         if ($this->pos > 0) {
Please login to merge, or discard this patch.