Skip to content

Commit 4ce6cb0

Browse files
getStatusFor(): Argument #2 ($action) must be of type string, int given
1 parent b021f96 commit 4ce6cb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Processors/Status.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ protected function showCaption(): void
4141

4242
protected function showStatus(array $actions, array $completed): void
4343
{
44-
foreach ($this->merge($actions, $completed) as $action) {
44+
foreach ($this->merge($actions, array_keys($completed)) as $action) {
4545
$status = $this->getStatusFor($completed, $action);
4646

4747
$this->notification->twoColumn($action, $status);

0 commit comments

Comments
 (0)