diff --git a/src/FileManager.php b/src/FileManager.php index 4ff2810cf..c687cc641 100644 --- a/src/FileManager.php +++ b/src/FileManager.php @@ -61,16 +61,16 @@ public function dumpFile(string $filename, string $content) $newFile = !$this->fileExists($filename); $existingContent = $newFile ? '' : file_get_contents($absolutePath); - $comment = $newFile ? 'created' : 'updated'; + $comment = $newFile ? 'created' : 'updated'; if ($existingContent === $content) { - $comment = 'no change'; + $comment = 'no change'; } $this->fs->dumpFile($absolutePath, $content); if ($this->io) { $this->io->comment(sprintf( - '%s: %s', + '%s: %s', $comment, $this->relativizePath($filename) ));