ivanche/type-converter-bundle

0.1.0 2016-12-01 11:32 UTC

This package is not auto-updated.

Last update: 2024-09-29 02:02:11 UTC


README

#Symfony Type Converter Bundle

This bundle is built to inject a library type converter.

#Installation

Use composer to intall this bundle

composer require ivanche/type-converter-bundle

#Configuration It have a few options.

ivanche_type_converter:
    auto_mapping: false
    strict: true

###Options: ####auto_mapping: boolean (true|false)
If the converter implements Ivanche\Converter\AutoMappingInterface, we add methodCall setAutoMapping to definition of your converter.

If auto_mapping is true, converter try to set public properties(or properties with public getter/setter) to target from source.

####strict: boolean (true|false)
If the converter implements Ivanche\Converter\AutoMappingInterface, we add methodCall setStrictMode to definition of your converter.

When strict is true, converter throw exception Ivanche\Exception\UnsupportedSourcePropertyException if automapping try to set public properties(or properties with public getter/setter) from source which don't exist in target.