Skip to content

Commit c53d5f4

Browse files
committed
prevent warning on implicit object->array conversion
1 parent 188ce3c commit c53d5f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Command/PrintFormDataCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
1818
}
1919

2020
return $data;
21-
}, $formData);
21+
}, (array)$formData);
2222

2323
$output->write(print_r($printData, true));
2424
}

0 commit comments

Comments
 (0)