Passed
Pull Request — master (#156)
by Tomáš
07:08
created
src/Phpml/Math/LinearAlgebra/EigenvalueDecomposition.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  *	Class to obtain eigenvalues and eigenvectors of a real matrix.
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 
129 129
         // Always return the eigenvectors of length 1.0
130 130
         $vectors = new Matrix($vectors);
131
-        $vectors = array_map(function ($vect) {
131
+        $vectors = array_map(function($vect) {
132 132
             $sum = 0;
133 133
             for ($i = 0; $i < count($vect); ++$i) {
134 134
                 $sum += $vect[$i] ** 2;
Please login to merge, or discard this patch.