CallbackTransformer
class CallbackTransformer implements DataTransformerInterface
Methods
| __construct(callable $transform, callable $reverseTransform) | |
mixed | transform(mixed $data) Transforms a value from the original representation to a transformed representation. | |
mixed | reverseTransform(mixed $data) Transforms a value from the transformed representation to its original representation. | |
Details
__construct(callable $transform, callable $reverseTransform)
Parameters
callable | $transform | The forward transform callback |
callable | $reverseTransform | The reverse transform callback |
Transforms a value from the original representation to a transformed representation.
Parameters
mixed | $data | The value in the original representation |
Return Value
mixed | The value in the transformed representation |
Exceptions
Transforms a value from the transformed representation to its original representation.
Parameters
mixed | $data | The value in the transformed representation |
Return Value
mixed | The value in the original representation |
Exceptions