ChainEncoder
class ChainEncoder implements ContextAwareEncoderInterface
Encoder delegating the decoding to a chain of encoders.
Properties
| protected | $encoders | | |
| protected | $encoderByFormat | | |
Methods
| | __construct(array $encoders = array()) | |
| string|int|float|bool | encode(mixed $data, string $format, array $context = array()) Encodes data into the given format. | |
| bool | supportsEncoding(string $format, array $context = array()) Checks whether the serializer can encode to given format. | |
| bool | needsNormalization(string $format, array $context = array()) Checks whether the normalization is needed for the given format. | |
Details
__construct(array $encoders = array())
Parameters
final string|int|float|bool
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
Exceptions
bool
supportsEncoding(string $format, array $context = array())
Checks whether the serializer can encode to given format.
Parameters
| string | $format | Format name |
| array | $context | |
Return Value
bool
needsNormalization(string $format, array $context = array())
Checks whether the normalization is needed for the given format.
Parameters
| string | $format | |
| array | $context | |
Return Value