Skip to content

Commit

Permalink
Update src/bundle/DependencyInjection/Configuration.php
Browse files Browse the repository at this point in the history
Co-authored-by: Konrad Oboza <[email protected]>
  • Loading branch information
ViniTou and konradoboza authored Jun 24, 2024
1 parent 6e2245c commit 96cff7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private function validateAttributeTypes(NodeDefinition $rootNode): NodeDefinitio
'The value "%s" is not allowed for path "ibexa_fieldtype_richtext.custom_tags.%s.attributes.campaign.type". Allowed values: %s',
$attribute['type'],
$tagIdentifier,
implode(', ', array_map(static fn ($type) => "\"$type\"", $enabledTypes))
implode(', ', array_map(static fn ($type): string => "\"$type\"", $enabledTypes))
)
);
}
Expand Down

0 comments on commit 96cff7b

Please sign in to comment.