1
0
Fork 0
mirror of synced 2024-06-26 18:20:43 +12:00

style(migration): remove space on concatenation

This commit is contained in:
Torsten Dittmann 2021-01-15 16:36:42 +01:00
parent 8c1371db4d
commit 5da6b31edb

View file

@ -46,7 +46,7 @@ $cli
->execute();
} catch (\Throwable $th) {
throw $th;
Console::error('Failed to update project ("' . $project->getId() . '") version with error: ' . $th->getMessage());
Console::error('Failed to update project ("'.$project->getId().'") version with error: '.$th->getMessage());
}
}
@ -54,7 +54,7 @@ $cli
'limit' => $limit,
'offset' => $offset,
'filters' => [
'$collection=' . Database::SYSTEM_COLLECTION_PROJECTS,
'$collection='.Database::SYSTEM_COLLECTION_PROJECTS,
],
]);
@ -63,7 +63,7 @@ $cli
$count = $count + $sum;
if ($sum > 0) {
Console::log('Fetched ' . $count . '/' . $consoleDB->getSum() . ' projects...');
Console::log('Fetched '.$count.'/'.$consoleDB->getSum().' projects...');
}
}