Completed
Push — develop ( d46380...4bf157 )
by Stan
03:03
created
src/Storage/StorageManager.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,14 +56,14 @@
 block discarded – undo
56 56
             switch (true) {
57 57
                 case $metric instanceof Histogram:
58 58
                     return $metric->builder($items->merge($this->repository->get("{$key}:SUM")))
59
-                                  ->samples();
59
+                                    ->samples();
60 60
                 case $metric instanceof Summary:
61 61
                     return $metric->builder($items->map(function (string $key) {
62 62
                         return $this->repository->get($key);
63 63
                     }))->samples();
64 64
                 default:
65 65
                     return $metric->builder($items)
66
-                                  ->samples();
66
+                                    ->samples();
67 67
             }
68 68
         } catch (Exception $e) {
69 69
             $class = get_class($metric);
Please login to merge, or discard this patch.