Test Failed
Push — dev ( 8b98ac...979695 )
by Jordan
12:05
created
src/Samsara/Fermat/Types/Matrix.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
             foreach ($this->rows[0]->toArray() as $key => $value) {
94 94
                 $childMatrixData = [];
95 95
 
96
-                for ($i = 1;$i < $this->numRows;$i++) {
96
+                for ($i = 1; $i < $this->numRows; $i++) {
97 97
                     $childMatrixData[$i-1] = $this->rows[$i]->filterByKeys([$key]);
98 98
                 }
99 99
 
@@ -343,7 +343,7 @@  discard block
 block discarded – undo
343 343
 
344 344
             foreach ($this->rows as $rowKey => $row) {
345 345
                 $resultArray[$rowKey] = new NumberCollection();
346
-                for ($i = 0;$i < $value->getColumnCount();$i++) {
346
+                for ($i = 0; $i < $value->getColumnCount(); $i++) {
347 347
                     $cellVal = Numbers::makeZero();
348 348
                     /** @var NumberInterface $num */
349 349
                     foreach ($row->toArray() as $index => $num) {
Please login to merge, or discard this patch.