sprintf('%d secret%s already overridden in the local vault and will be skipped.',
$skipped, 1 !==
$skipped ? 's are' : ' is'
),
'Use the --force flag to override these.',
]);
} foreach ($secrets as $k =>
$v) { if (null ===
$v) { $io->
error($this->vault->
getLastMessage() ??
sprintf('Secret "%s" has been skipped as there was an error reading it.',
$k));
continue;
} $this->localVault->
seal($k,
$v);
$io->
note($this->localVault->
getLastMessage());
} return 0;
}}