📄️ Custom Type Converters
Custom Type Converters in PHP AutoMapper allow you to define custom conversion logic for specific types. This can be particularly useful in scenarios where the default conversion logic does not meet your requirements or when you need to perform complex transformations.
📄️ Custom Value Resolvers
Custom value resolvers in PHP AutoMapper provide a way to customize how a specific property or value is resolved during the mapping process. This can be particularly useful when the value of a property depends on some complex logic or external factors.
📄️ Conditional Mapping
In AutoMapper, you can specify conditions for properties that need to be fulfilled before the mapping of those properties takes place.
📄️ Null Substitution
The nullSubstitute() method in PHP AutoMapper lets you define a replacement value to be used when the
📄️ Before and After Map Action
The beforeMap() and afterMap() methods in PHP AutoMapper allow you to execute custom actions before