1
0
Fork 0
mirror of synced 2024-06-30 04:00:34 +12:00

linter fix

This commit is contained in:
Matej Bačo 2023-09-07 09:24:04 +02:00
parent 9e21c5f58d
commit 1e990ce12f

View file

@ -56,15 +56,15 @@ class V19 extends Migration
if ($domain->getAttribute('verification', false)) {
$status = 'verified';
}
$projectId = $domain->getAttribute('projectId');
$projectInternalId = $domain->getAttribute('projectInternalId');
if (empty($projectId) || empty($projectInternalId)) {
Console::warning("Error migrating domain {$domain->getAttribute('domain')}: Missing projectId or projectInternalId");
continue;
}
$ruleDocument = new Document([
'projectId' => $domain->getAttribute('projectId'),
'projectInternalId' => $domain->getAttribute('projectInternalId'),
@ -75,7 +75,7 @@ class V19 extends Migration
'status' => $status,
'certificateId' => $domain->getAttribute('certificateId'),
]);
try {
$this->consoleDB->createDocument('rules', $ruleDocument);
} catch (\Throwable $th) {