Skip to content

Commit e62e42f

Browse files
chore: fix php-cs-fixer (#8269)
1 parent 33210c6 commit e62e42f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/JsonApi/Serializer/ItemNormalizerTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function denormalize(mixed $data, string $type, ?string $format = null, a
6262
if (!$allowClientGeneratedId) {
6363
throw new NotNormalizableValueException(\sprintf('Client-generated IDs are not allowed on this operation. Set the "%s" denormalization context flag (or the bundle "allow_client_generated_id" configuration) to enable it.', ItemNormalizer::ALLOW_CLIENT_GENERATED_ID));
6464
}
65-
// Fall through: client id is merged into the denormalized payload below.
65+
// Fall through: client id is merged into the denormalized payload below.
6666
} elseif (true !== ($context['api_allow_update'] ?? true)) {
6767
throw new NotNormalizableValueException('Update is not allowed for this operation.');
6868
} else {

0 commit comments

Comments
 (0)