We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc102d3 commit 608b885Copy full SHA for 608b885
src/Patcher.php
@@ -69,8 +69,10 @@ protected function patch(string $file, int $batch): void
69
if (! $patch->isPerpetual) {
70
$this->repository->log($name, $batch);
71
}
72
+
73
+ $perpetualMessage = $patch->isPerpetual ? " (Perpetual)" : "";
74
- $this->note("<info>Patched:</info> $name ($runTime seconds)." . $patch->isPerpetual ? " (Perpetual)" : "");
75
+ $this->note("<info>Patched:</info> $name ($runTime seconds).<comment>$perpetualMessage</comment>");
76
} else {
77
$this->note("<comment>Skipped:</comment> $name is not eligible to run in current condition.");
78
0 commit comments