Skip to content

Commit 0797914

Browse files
authored
Revert "[Imported] PHP 7.4 compatibility fix using implode() (#10)" (#11)
This reverts commit 0521e53.
1 parent 0521e53 commit 0797914

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)