Completed
Push — master ( 79aed4...9a93ca )
by Pierre
03:23
created
src/App/Component/Math/Graph/Path/Floydwarshall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
         $this->path = [];
105 105
         $this->searchPath($srcIdx, $dstIdx);
106 106
         $path = ($withNames)
107
-            ? array_map(function ($v) {
107
+            ? array_map(function($v) {
108 108
                 return $this->nodeNames[$v];
109 109
             }, $this->path)
110 110
             : $this->path;
Please login to merge, or discard this patch.