ChainEncoder

class ChainEncoder implements EncoderInterface

Encoder delegating the decoding to a chain of encoders.

Methods

__construct(array $encoders = array())
scalar encode(mixed $data, string $format, array $context = array())

Encodes data into the given format.

bool supportsEncoding(string $format)

Checks whether the serializer can encode to given format.

bool needsNormalization(string $format)

Checks whether the normalization is needed for the given format.

Details

__construct(array $encoders = array())

Parameters

array $encoders

final scalar encode(mixed $data, string $format, array $context = array())

Encodes data into the given format.

Parameters

mixed $data Data to encode
string $format Format name
array $context options that normalizers/encoders have access to.

Return Value

scalar

Exceptions

UnexpectedValueException

bool supportsEncoding(string $format)

Checks whether the serializer can encode to given format.

Parameters

string $format format name

Return Value

bool

bool needsNormalization(string $format)

Checks whether the normalization is needed for the given format.

Parameters

string $format

Return Value

bool

© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/2.8/Symfony/Component/Serializer/Encoder/ChainEncoder.html