Skip to content

Commit d99e7ef

Browse files
committed
Fixing minimum requirements
1 parent ffd994f commit d99e7ef

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"require": {
1717
"clue/graph": "~0.9.0",
1818
"doctrine/dbal": "~2.4",
19-
"doctrine/cache": "~1.4",
19+
"doctrine/cache": "^1.4.1",
2020
"graphp/algorithms": "~0.8.0"
2121
},
2222
"require-dev": {

src/SchemaAnalyzer.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,6 @@ private function getShortestPathWithoutCache($fromTable, $toTable)
282282
return $foreignKeys;
283283
}
284284

285-
286285
private function checkTableExists($tableName)
287286
{
288287
try {

src/SchemaAnalyzerTableNotFoundException.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ public static function tableNotFound($tableName, Schema $schema, \Exception $pre
1818
$closestTableName = $testedTableName;
1919
}
2020
}
21+
2122
return new self("Could not find table '$tableName'. Did you mean '$closestTableName'?", 0, $previousException);
2223
}
2324
}

0 commit comments

Comments
 (0)