We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25a61f9 commit f2e0f9fCopy full SHA for f2e0f9f
src/Commands/ChangeOwnerConfigJson.php
@@ -38,8 +38,10 @@ public function handle(): void
38
$user = $this->argument('user') ?: $this->getDefaultUserGroup();
39
$group = $this->argument('group') ?: $this->getDefaultUserGroup();
40
41
- if (empty($user) || empty($group)) {
42
- $user = $group = $this->getDefaultUserGroup();
+ if (!is_string($user) || !is_string($group)) {
+ $this->error('Failed to retrieve default user and group');
43
+
44
+ return;
45
}
46
47
$this->changeOwner($user, $group);
0 commit comments