Skip to content

Commit 7d56732

Browse files
Fix line length
1 parent 5637c4c commit 7d56732

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/Runner/Restore.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,10 @@ private function restoreBackup(Target $target, Configuration\Backup $backup, Pla
137137
private function printDecryptionCommands(Plan $plan): void
138138
{
139139
if (!$plan->isCryptSupported()) {
140-
echo Util::formatWithColor('fg-red', "WARNING: Your configured crypt does not support restore for now.\n\n");
140+
echo Util::formatWithColor(
141+
'fg-red',
142+
"WARNING: Your configured crypt does not support restore for now.\n\n"
143+
);
141144
return;
142145
}
143146
$commands = $plan->getDecryptionCommands();
@@ -159,7 +162,10 @@ private function printDecryptionCommands(Plan $plan): void
159162
private function printRestoreCommands(Plan $plan): void
160163
{
161164
if (!$plan->isSourceSupported()) {
162-
echo Util::formatWithColor('fg-red', "WARNING: Your configured source does not support restore for now.\n\n");
165+
echo Util::formatWithColor(
166+
'fg-red',
167+
"WARNING: Your configured source does not support restore for now.\n\n"
168+
);
163169
return;
164170
}
165171

0 commit comments

Comments
 (0)