Skip to content

Commit a21b8b7

Browse files
author
Sebastian Feldmann
committed
Fix empty delimiter error
1 parent d35288d commit a21b8b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Artisan.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ private function optionArgsAsArray(): array
124124
if (empty($this->args)) {
125125
return [];
126126
}
127-
return explode('', $this->args);
127+
return explode(' ', $this->args);
128128
}
129129

130130
/**

0 commit comments

Comments
 (0)