You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
+ Upgrade phpunit and fix tests
+ Fix passing null to strpos triggering warning on new php
+ Raise doctrine/cache to v1.4.1 since void cache was not in 1.4
Copy file name to clipboardExpand all lines: src/MultiDijkstra.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -146,7 +146,7 @@ public static function getCheapestPathFromPredecesArray(Vertex $startVertex, Ver
146
146
if (count($predecessorEdges) > 1) {
147
147
thrownewMultiDijkstraAmbiguityException("There are many possible shortest paths to link vertex '".$startVertex->getId()."' to '".$endVertex->getId()."'");
148
148
}
149
-
/* @var $edge \Fhaculty\Graph\Edge\Base */
149
+
/** @var $edge \Fhaculty\Graph\Edge\Base */
150
150
$edge = $predecessorEdges[0];
151
151
$edges[] = $edge;
152
152
if ($currentVertex === $edge->getVerticesStart()->getVertexFirst()) {
0 commit comments