Skip to content

Commit e650fb5

Browse files
committed
Minor fix
1 parent fff0c7c commit e650fb5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/SchemaAnalyzer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ private function isJunctionTable(Table $table)
150150
public function getShortestPath($fromTable, $toTable)
151151
{
152152
$cacheKey = $this->cachePrefix."_shortest_".$fromTable."```".$toTable;
153-
$path = false;
154153
$path = $this->cache->fetch($cacheKey);
155154
if ($path === false) {
156155
$path = $this->getShortestPathWithoutCache($fromTable, $toTable);

0 commit comments

Comments
 (0)