| 1 | <?php |
||
| 8 | class FailedObjectConstructor implements ObjectConstructorInterface { |
||
| 9 | /** |
||
| 10 | * Constructs a new object. |
||
| 11 | * |
||
| 12 | * Implementations could for example create a new object calling "new", use |
||
| 13 | * "unserialize" techniques, reflection, or other means. |
||
| 14 | * |
||
| 15 | * @param VisitorInterface $visitor |
||
| 16 | * @param ClassMetadata $metadata |
||
| 17 | * @param mixed $data |
||
| 18 | * @param array $type ["name" => string, "params" => array] |
||
| 19 | * |
||
| 20 | * @return object |
||
| 21 | */ |
||
| 22 | public function construct(VisitorInterface $visitor, ClassMetadata $metadata, $data, array $type) |
||
| 26 | } |