Passed
Push — master ( f7537c...ff80af )
by Arkadiusz
02:31
created
src/Phpml/Math/Distance/Manhattan.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
 namespace Phpml\Math\Distance;
6 6
 
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
             throw InvalidArgumentException::arraySizeNotMatch();
19 19
         }
20 20
 
21
-        return array_sum(array_map(function ($m, $n) {
21
+        return array_sum(array_map(function($m, $n) {
22 22
             return abs($m - $n);
23 23
         }, $a, $b));
24 24
     }
Please login to merge, or discard this patch.