ContextAwareDecoderInterface
interface ContextAwareDecoderInterface implements DecoderInterface
Adds the support of an extra $context parameter for the supportsDecoding method.
Methods
mixed | decode(string $data, string $format, array $context = array()) Decodes a string into PHP data. | from DecoderInterface |
bool | supportsDecoding(string $format, array $context = array()) Checks whether the deserializer can decode from given format. |
Details
mixed decode(string $data, string $format, array $context = array())
Decodes a string into PHP data.
Parameters
string | $data | Data to decode |
string | $format | Format name |
array | $context | options that decoders have access to The format parameter specifies which format the data is in; valid values depend on the specific implementation. Authors implementing this interface are encouraged to document which formats they support in a non-inherited phpdoc comment. |
Return Value
mixed |
Exceptions
UnexpectedValueException |
bool supportsDecoding(string $format, array $context = array())
Checks whether the deserializer can decode from given format.
Parameters
string | $format | format name |
array | $context |
Return Value
bool |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/4.0/Symfony/Component/Serializer/Encoder/ContextAwareDecoderInterface.html