Passed
Branch master (fc2336)
by Yasunori
03:40
created
src/Data/Series.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function max($floatPoint = 2) : float
113 113
     {
114
-       // Initialize max value with 1st index of $Sample.
114
+        // Initialize max value with 1st index of $Sample.
115 115
         $max = $this->Sample[0];
116 116
 
117 117
         for ($i = 1; $i < $this->SampleCount; $i++) {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      */
174 174
     public function median($floatPoint = 2) : float
175 175
     {
176
-       return $this->quartile(2, $floatPoint);
176
+        return $this->quartile(2, $floatPoint);
177 177
     }
178 178
 
179 179
     /**
Please login to merge, or discard this patch.