Skip to content

Commit ee75919

Browse files
authored
Merge pull request #12 from magento-commerce/imported-magento-magento-cloud-patches-81
[Imported] PHP 7.4 compatibility fix using implode()
2 parents 0797914 + 7c031dc commit ee75919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Patch/Pool/OptionalPool.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ function (PatchInterface $patch) {
231231
$diff = array_diff($filter, $resultIds);
232232
if (count($diff) > 0) {
233233
throw new PatchNotFoundException(
234-
'Next patches weren\'t found: ' . implode($diff, ' ') . '. ' .
234+
'Next patches weren\'t found: ' . implode(' ', $diff) . '. ' .
235235
'Please, check with "status" command availability of these patches for the current Magento version.'
236236
);
237237
}

0 commit comments

Comments
 (0)