From 4df82644663319fa15a279fe20dd1582e346bb71 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 12 Jul 2024 10:32:17 +0000 Subject: [PATCH] Merge pull request #1832 from hydephp/remove-extra-space-from-signature Remove extra space from command signature https://github.com/hydephp/develop/commit/04ce285b096b546cb50a12b3dccc225abe592eec --- src/Console/Commands/ChangeSourceDirectoryCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Console/Commands/ChangeSourceDirectoryCommand.php b/src/Console/Commands/ChangeSourceDirectoryCommand.php index 6bffde7f..2b9f8cee 100644 --- a/src/Console/Commands/ChangeSourceDirectoryCommand.php +++ b/src/Console/Commands/ChangeSourceDirectoryCommand.php @@ -27,7 +27,7 @@ class ChangeSourceDirectoryCommand extends Command { /** @var string */ - protected $signature = 'change:sourceDirectory {name : The new source directory name }'; + protected $signature = 'change:sourceDirectory {name : The new source directory name}'; /** @var string */ protected $description = 'Change the source directory for your project';