1
0
Fork 0
mirror of synced 2024-09-30 17:26:48 +13:00

Fix linter

This commit is contained in:
Matej Bačo 2022-11-16 19:41:01 +00:00
parent ae9a518250
commit f324576686

View file

@ -158,7 +158,7 @@ $cli = $platform->getCli();
$cli
->error()
->inject('error')
->action(function(Throwable $error) {
->action(function (Throwable $error) {
Console::error($error->getMessage());
});
@ -166,7 +166,7 @@ $cli
->init()
->inject('pools')
->inject('cache')
->action(function(Group $pools, Cache $cache) {
->action(function (Group $pools, Cache $cache) {
$maxAttempts = 5;
$sleep = 3;
@ -189,7 +189,7 @@ $cli
$collections = Config::getParam('collections', []);
$last = \array_key_last($collections);
if($dbForConsole->exists($dbForConsole->getDefaultDatabase(), $last)) {
if ($dbForConsole->exists($dbForConsole->getDefaultDatabase(), $last)) {
$ready = true;
break;
}
@ -197,7 +197,7 @@ $cli
sleep($sleep);
} while ($attempts < $maxAttempts);
if(!$ready) {
if (!$ready) {
throw new Exception("Console is not ready yet. Please try again later.");
}
});