diff --git a/app/Console/Commands/System/OutputsInstructions.php b/app/Console/Commands/System/OutputsInstructions.php index ad6bc7444b..e342822bc0 100644 --- a/app/Console/Commands/System/OutputsInstructions.php +++ b/app/Console/Commands/System/OutputsInstructions.php @@ -62,7 +62,7 @@ class OutputsInstructions extends Command { $parts = explode("\n", wordwrap($text)); foreach ($parts as $string) { - $this->line('| '.sprintf('%-77s', $string).'|'); + $this->line(sprintf('| %-77s|', $string)); } } @@ -73,7 +73,7 @@ class OutputsInstructions extends Command { $parts = explode("\n", wordwrap($text)); foreach ($parts as $string) { - $this->info('| '.sprintf('%-77s', $string).'|'); + $this->info(sprintf('| %-77s|', $string)); } } diff --git a/app/Http/Controllers/DebugController.php b/app/Http/Controllers/DebugController.php index 87a9a47e3d..0306cca27e 100644 --- a/app/Http/Controllers/DebugController.php +++ b/app/Http/Controllers/DebugController.php @@ -252,7 +252,8 @@ final class DebugController extends Controller echo '