We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fff0c7c commit e650fb5Copy full SHA for e650fb5
src/SchemaAnalyzer.php
@@ -150,7 +150,6 @@ private function isJunctionTable(Table $table)
150
public function getShortestPath($fromTable, $toTable)
151
{
152
$cacheKey = $this->cachePrefix."_shortest_".$fromTable."```".$toTable;
153
- $path = false;
154
$path = $this->cache->fetch($cacheKey);
155
if ($path === false) {
156
$path = $this->getShortestPathWithoutCache($fromTable, $toTable);
0 commit comments