Skip to content
Snippets Groups Projects
Commit a27612e3 authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

[Fix] problème en cas de non définition du répertoire de fichiers de migrations

parent 128101d6
Branches
Tags
No related merge requests found
Pipeline #30767 failed
......@@ -234,7 +234,7 @@ class MigrationManager
{
$migrationDir = $this->getMigrationDir();
if (!is_dir($migrationDir)) return;
if (!is_dir($migrationDir ?? '')) return;
$files = scandir($migrationDir);
sort($files);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment