class NullNormalizer in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/serialization/src/Normalizer/NullNormalizer.php \Drupal\serialization\Normalizer\NullNormalizer
Null normalizer.
Hierarchy
- class \Symfony\Component\Serializer\Normalizer\SerializerAwareNormalizer implements SerializerAwareInterface
- class \Drupal\serialization\Normalizer\NormalizerBase implements NormalizerInterface
- class \Drupal\serialization\Normalizer\NullNormalizer
- class \Drupal\serialization\Normalizer\NormalizerBase implements NormalizerInterface
Expanded class hierarchy of NullNormalizer
1 file declares its use of NullNormalizer
- NullNormalizerTest.php in core/
modules/ serialization/ tests/ src/ Unit/ Normalizer/ NullNormalizerTest.php - Contains \Drupal\Tests\serialization\Unit\Normalizer\NullNormalizerTest.
1 string reference to 'NullNormalizer'
- serialization.services.yml in core/
modules/ serialization/ serialization.services.yml - core/modules/serialization/serialization.services.yml
1 service uses NullNormalizer
- serializer.normalizer.password_field_item in core/
modules/ serialization/ serialization.services.yml - Drupal\serialization\Normalizer\NullNormalizer
File
- core/
modules/ serialization/ src/ Normalizer/ NullNormalizer.php, line 13 - Contains \Drupal\serialization\Normalizer\NullNormalizer.
Namespace
Drupal\serialization\NormalizerView source
class NullNormalizer extends NormalizerBase {
/**
* Constructs a NullNormalizer object.
*
* @param string|array $supported_interface_of_class
* The supported interface(s) or class(es).
*/
public function __construct($supported_interface_of_class) {
$this->supportedInterfaceOrClass = $supported_interface_of_class;
}
/**
* {@inheritdoc}
*/
public function normalize($object, $format = NULL, array $context = array()) {
return NULL;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NormalizerBase:: |
protected | property | The interface or class that this Normalizer supports. | 7 |
NormalizerBase:: |
protected | function | Checks if the provided format is supported by this normalizer. | |
NormalizerBase:: |
public | function | Implements \Symfony\Component\Serializer\Normalizer\DenormalizerInterface::supportsDenormalization() | 1 |
NormalizerBase:: |
public | function |
Checks whether the given class is supported for normalization by this normalizer. Overrides NormalizerInterface:: |
1 |
NullNormalizer:: |
public | function |
Normalizes an object into a set of arrays/scalars. Overrides NormalizerInterface:: |
|
NullNormalizer:: |
public | function | Constructs a NullNormalizer object. | |
SerializerAwareNormalizer:: |
protected | property | ||
SerializerAwareNormalizer:: |
public | function |
Sets the owning Serializer object. Overrides SerializerAwareInterface:: |