Passed
Push — master ( 411d0d...8dd355 )
by Pierre
03:33
created
src/App/Component/Math/Graph/Path/Floydwarshall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
         $this->path = [];
102 102
         $this->searchPath($srcIdx, $dstIdx);
103 103
         $path = ($withNames)
104
-            ? array_map(function ($v) {
104
+            ? array_map(function($v) {
105 105
                 return $this->nodenames[$v];
106 106
             }, $this->path)
107 107
             : $this->path;
Please login to merge, or discard this patch.