Completed
Push — 1.1 ( ec47fa...bb3e99 )
by David
10:31 queued 09:19
created
src/MultiDijkstra.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,7 +104,7 @@
 block discarded – undo
104 104
                     $newCostsToTargetVertex = $totalCostOfCheapestPathTo[$currentVertexId] + $weight;
105 105
 
106 106
                     if ((!isset($predecesEdgeOfCheapestPathTo[$targetVertexId]))
107
-                           // is the new path cheaper?
107
+                            // is the new path cheaper?
108 108
                            || $totalCostOfCheapestPathTo[$targetVertexId] > $newCostsToTargetVertex) {
109 109
 
110 110
                         // Not an update, just a new insert with lower cost
Please login to merge, or discard this patch.