NormalizationBuilder

class NormalizationBuilder This class builds normalization conditions. Properties $before $remappings Methods __construct(NodeDefinition $node) Constructor. NormalizationBuilder remap(string $key, string $plural = null) Registers a key to remap to its plural form. ExprBuilder|NormalizationBuilder before(Closure $closure = null) Registers a closure to run before the normalization or an expression builder to build it if null is provided. Details

NormalizationAwareInterface

interface NormalizationAwareInterface Defines the interface of encoders that will normalize data themselves. Implementing this interface essentially just tells the Serializer that the data should not be pre-normalized before being passed to this Encoder.

NormalizableInterface

interface NormalizableInterface Defines the most basic interface a class must implement to be normalizable. If a normalizer is registered for the class and it doesn't implement the Normalizable interfaces, the normalizer will be used instead. Methods array|scalar normalize(NormalizerInterface $normalizer, string|null $format = null, array $context = array()) Normalizes the object into an array of scalars|arrays. Details array|scalar normalize(NormalizerInt

NonceExpiredException

class NonceExpiredException extends AuthenticationException NonceExpiredException is thrown when an authentication is rejected because the digest nonce has expired. Methods TokenInterface getToken() Get the token. from AuthenticationException setToken(TokenInterface $token) Set the token. from AuthenticationException serialize() from AuthenticationException unserialize($str) from AuthenticationException string getMessageKey() Message key to be used by the translation co

NodeParentInterface

interface NodeParentInterface An interface that must be implemented by all node parents.

NodeInterface::normalize()

mixed normalize(mixed $value) Normalizes the supplied value. Parameters mixed $value The value to normalize Return Value mixed The normalized value

NodeInterface::merge()

mixed merge(mixed $leftSide, mixed $rightSide) Merges two values together. Parameters mixed $leftSide mixed $rightSide Return Value mixed The merged values

NodeInterface::isRequired()

bool isRequired() Returns true when the node is required. Return Value bool If the node is required

NodeInterface::hasDefaultValue()

bool hasDefaultValue() Returns true when the node has a default value. Return Value bool If the node has a default value

NodeInterface::getSpecificity()

Specificity getSpecificity() Returns node's specificity. Return Value Specificity