A helper providing autocompletion for available ObjectNormalizer options.
- author Mathias Arlaud
- All
- self
- Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder
- Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder
Methods |
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::toArray() : array
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withAllowExtraAttributes(?bool $allowExtraAttributes) : static If AbstractNormalizer::ATTRIBUTES are specified, and the source has fields that are not part of that list, configures whether to ignore those attributes or throw an ExtraAttributesException. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withAttributes(?array $attributes) : static Configures attributes to (de)normalize. For nested structures, this list needs to reflect the object tree. Eg: ['foo', 'bar', 'object' => ['baz']]
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withCallbacks(?array $callbacks) : static Configures an hashmap of field name => callable to normalize this field. The callable is called if the field is encountered with the arguments:
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withCircularReferenceHandler(?callable $circularReferenceHandler) : static Configures an handler to call when a circular reference has been detected. If no handler is specified, a CircularReferenceException is thrown. The method will be called with ($object, $format, $context) and its return value is returned as the result of the normalize call. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withCircularReferenceLimit(?int $circularReferenceLimit) : static Configures how many loops of circular reference to allow while normalizing. The value 1 means that when we encounter the same object a second time, we consider that a circular reference. You can raise this value for special cases, e.g. in combination with the max depth setting of the object normalizer. Must be strictly positive.
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withContext(Symfony
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withDeepObjectToPopulate(?bool $deepObjectToPopulate) : static Configures whether to tell the denormalizer to also populate existing objects on attributes of the main object. Setting this to true is only useful if you also specify the root object in AbstractNormalizer::OBJECT_TO_POPULATE. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withDefaultConstructorArguments(?array $defaultConstructorArguments) : static Configures a hashmap of classes containing hashmaps of constructor argument => default value. The names need to match the parameter names in the constructor arguments. Eg: [Foo::class => ['foo' => true, 'bar' => 0]]
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withDefaultContructorArguments(?array $defaultContructorArguments) : static
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withDepthKeyPattern(?string $depthKeyPattern) : static Configures a pattern to keep track of the current depth. Must contain exactly two string placeholders.
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withDisableTypeEnforcement(?bool $disableTypeEnforcement) : static Configures whether verifying types match during denormalization. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withEnableMaxDepth(?bool $enableMaxDepth) : static Configures whether to respect the max depth metadata on fields. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withExcludeFromCacheKeys(?array $excludeFromCacheKeys) : static Configures which context key are not relevant to determine which attributes of an object to (de)normalize.
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withGroups(array|string|?null $groups) : static Configures groups containing attributes to (de)normalize. Eg: ['group1', 'group2']
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withIgnoredAttributes(?array $ignoredAttributes) : static Configures attributes to be skipped when normalizing an object tree. This list is applied to each element of nested structures. Eg: ['foo', 'bar'] Note: The behaviour for nested structures is different from ATTRIBUTES for historical reason. Aligning the behaviour would be a BC break.
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withMaxDepthHandler(?callable $maxDepthHandler) : static Configures a callback to allow to set a value for an attribute when the max depth has been reached. If no callback is given, the attribute is skipped. If a callable is given, its return value is used (even if null). The arguments are:
|
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withObjectToPopulate(?object $objectToPopulate) : static Configures an object to be updated instead of creating a new instance. If you have a nested structure, child objects will be overwritten with new instances unless you set AbstractObjectNormalizer::DEEP_OBJECT_TO_POPULATE to true. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withPreserveEmptyObjects(?bool $preserveEmptyObjects) : static Configures whether an empty object should be kept as an object (in JSON: {}) or converted to a list (in JSON: []). |
public Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::withRequireAllProperties(?bool $requireAllProperties = true) : static Configures requiring all properties to be listed in the input instead of falling back to null for nullable ones. |
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withSkipNullValues(?bool $skipNullValues) : static Configures whether fields with the value |
public Symfony\Component\Serializer\Context\Normalizer\AbstractObjectNormalizerContextBuilder::withSkipUninitializedValues(?bool $skipUninitializedValues) : static Configures whether uninitialized typed class properties should be excluded during normalization. |
Methods |
protected Symfony\Component\Serializer\Context\Normalizer\AbstractNormalizerContextBuilder::with(string $key, ?mixed $value) : static |