diff --git a/packages/framework/src/Console/Commands/PublishViewsCommand.php b/packages/framework/src/Console/Commands/PublishViewsCommand.php index 46b33b21b22..3f0e560c544 100644 --- a/packages/framework/src/Console/Commands/PublishViewsCommand.php +++ b/packages/framework/src/Console/Commands/PublishViewsCommand.php @@ -146,7 +146,7 @@ protected function handleInteractivePublish(): void Filesystem::copy($source, $target); } - $this->infoComment(sprintf("Published files [%s]", collect($selectedFiles)->map(fn (string $file): string => Str::after($file, basename($source).'/'))->implode(', '))); + $this->infoComment(sprintf('Published files [%s]', collect($selectedFiles)->map(fn (string $file): string => Str::after($file, basename($source).'/'))->implode(', '))); } protected function promptForFiles(Collection $files, string $baseDir): array