hydrator
hydrator copied to clipboard
Add nested mapping
class A {
private string $var;
}
class B {
private A $a;
}
$data = [
'key' => 'test',
];
Need to be able to specify that $data['key'] should be mapped to $b->a->var.