- Issue created by @alexharries
When ERL is installed on Drupal >= 10.4.x the above error is seen.
The solution is to change:
public function normalize($field_item, $format = NULL, array $context = []) {
... to:
public function normalize($field_item, $format = NULL, array $context = []): array|string|int|float|bool|\ArrayObject|NULL {
... in entity_reference_layout/src/Normalizer/EntityReferenceLayoutItemNormalizer.php
Will upload a patch in a second.
A
Needs review
2.0
Code