| 1 | <?php |
||
| 9 | final class LazyObjectMapping implements ObjectMappingInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ContainerInterface |
||
| 13 | */ |
||
| 14 | private $container; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $serviceId; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private $class; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param ContainerInterface $container |
||
| 28 | * @param string $serviceId |
||
| 29 | * @param string $class |
||
| 30 | */ |
||
| 31 | 1 | public function __construct(ContainerInterface $container, string $serviceId, string $class) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | 1 | public function getClass(): string |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | 1 | public function getType(): string |
|
| 53 | |||
| 54 | /** |
||
| 55 | * @return FieldMappingInterface[] |
||
| 56 | */ |
||
| 57 | 1 | public function getFieldMappings(): array |
|
| 61 | |||
| 62 | /** |
||
| 63 | * @return FieldMappingInterface[] |
||
| 64 | */ |
||
| 65 | 1 | public function getEmbeddedFieldMappings(): array |
|
| 69 | |||
| 70 | /** |
||
| 71 | * @return LinkMappingInterface[] |
||
| 72 | */ |
||
| 73 | 1 | public function getLinkMappings(): array |
|
| 77 | } |
||
| 78 |