From bbd630409b5197424a901453d439ab391232908f Mon Sep 17 00:00:00 2001 From: Robert M <48888686+robertmarney@users.noreply.github.com> Date: Tue, 18 Apr 2023 22:57:53 -0600 Subject: [PATCH] Fix: Skip Argument is Failing in L10 (#1079) * Fix Skip Argv * Update src/Commands/BaseCommand.php --- src/Commands/BaseCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/BaseCommand.php b/src/Commands/BaseCommand.php index a1934a2a..0b0907a3 100755 --- a/src/Commands/BaseCommand.php +++ b/src/Commands/BaseCommand.php @@ -186,7 +186,7 @@ public function runMigration(): bool public function isSkip($skip): bool { if ($this->option('skip')) { - return in_array($skip, (array) $this->option('skip')); + return in_array($skip, explode(',', $this->option('skip') ?? '')); } return false;