Skip to content

Commit f34e589

Browse files
authored
Update NodeNormalizer.php
Changed `implode` call to be compatible with php 8.0.
1 parent 08d5d8f commit f34e589

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPCR/Shell/Serializer/NodeNormalizer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ public function denormalize($data, $class, $format = null, array $context = [])
158158
if (count($errors) > 0) {
159159
throw new InvalidArgumentException(sprintf(
160160
'Errors encountered during denormalization: %s',
161-
implode($errors, "\n")
161+
implode("\n", $errors)
162162
));
163163
}
164164
}

0 commit comments

Comments
 (0)