Completed
Pull Request — 1.1 (#7)
by David
04:30
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.
src/SchemaAnalyzer.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -282,6 +282,9 @@  discard block
 block discarded – undo
282 282
         return $foreignKeys;
283 283
     }
284 284
 
285
+    /**
286
+     * @param string $tableName
287
+     */
285 288
     private function checkTableExists($tableName)
286 289
     {
287 290
         try {
@@ -503,7 +506,7 @@  discard block
 block discarded – undo
503 506
      *
504 507
      * @param ForeignKeyConstraint $fk
505 508
      *
506
-     * @return true
509
+     * @return boolean
507 510
      */
508 511
     private function isInheritanceRelationship(ForeignKeyConstraint $fk)
509 512
     {
Please login to merge, or discard this patch.