Skip to content

[Serializer] Add feature description for AbstractNormalizer::REQUIRE_ALL_PROPERTIES context option #17979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Nov 21, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add feature description
  • Loading branch information
Christian Kolb committed Feb 28, 2023
commit 1b0e274848be1ca7830b1b491d20557a535fbdff
24 changes: 24 additions & 0 deletions components/serializer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1242,6 +1242,30 @@ to ``true``::
$result = $normalizer->normalize($dummy, 'json', [AbstractObjectNormalizer::SKIP_NULL_VALUES => true]);
// ['bar' => 'notNull']

Preventing ``null`` value fallback for nullable properties
----------------------------------------------------------

By default, the Serializer will add `null` to nullable properties when the parameters for those are not provided.
You can change this behavior by setting the ``AbstractNormalizer::PREVENT_NULLABLE_FALLBACK`` context option
to ``true``::

class Dummy {
public function __construct(
public string $foo,
public ?string $bar,
)
}

$data = ['foo' => 'notNull'];

$normalizer = new ObjectNormalizer();
$result = $normalizer->denormalize($data, Dummy::class, 'json', [AbstractNormalizer::PREVENT_NULLABLE_FALLBACK => true]);
// throws Symfony\Component\Serializer\Exception\MissingConstructorArgumentException

.. versionadded:: 6.3

The context flag was introduced in Symfony 6.3.

Skipping Uninitialized Properties
---------------------------------

Expand Down
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy