1 | <?php |
||
9 | final class NestedEntityStrategy implements StrategyInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var ExtractionInterface |
||
13 | */ |
||
14 | private $extraction; |
||
15 | |||
16 | 88 | public function __construct(ExtractionInterface $extraction) |
|
20 | |||
21 | /** |
||
22 | * @inheritdoc |
||
23 | */ |
||
24 | 58 | public function extract($value) |
|
28 | |||
29 | /** |
||
30 | * @inheritdoc |
||
31 | */ |
||
32 | 18 | public function hydrate($value) |
|
36 | } |
||
37 |