orisai / object-mapper

Raw data mapping to validated objects
Mozilla Public License 2.0
10 stars 1 forks source link

Single field object #29

Open mabar opened 2 years ago

mabar commented 2 years ago

For value objects support - like email, url, phone number, credit card number. Value objects may be whole different library, with object mapper being an optional feature.

#[SingleFieldObject]
final class SingleFieldInput implements MappedObject
{

    #[ListOf(item: new MappedObjectValue(ItemInput::class))]
    public array $items;

}