Use {$var}, because it's deprecared in PHP 8.2

This commit is contained in:
Bob den Otter
2023-02-14 11:09:11 +01:00
committed by GitHub
parent 23e210bd39
commit bd7ad6af74

View File

@@ -45,7 +45,7 @@ class Migrate
} elseif (file_exists(\dirname(__DIR__).'/'.$configFilename)) {
$this->config = Yaml::parseFile(\dirname(__DIR__).'/'.$configFilename);
} else {
die("Config file ${configFilename} not found.");
die("Config file {$configFilename} not found.");
}
if (file_exists($this->checkpointFilename())) {