| Total Complexity | 4 | 
| Total Lines | 31 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 17 | class DoctrineObjectConstructor implements ObjectConstructorInterface  | 
            ||
| 18 | { | 
            ||
| 19 | /** @var array */  | 
            ||
| 20 | protected $config;  | 
            ||
| 21 | private $fallbackConstructor;  | 
            ||
| 22 | |||
| 23 | /** @var EntityResolver */  | 
            ||
| 24 | private $resolver;  | 
            ||
| 25 | |||
| 26 | 4 | public function __construct(ObjectConstructorInterface $fallbackConstructor, EntityResolver $resolver, array $config)  | 
            |
| 27 |     { | 
            ||
| 28 | 4 | $this->fallbackConstructor = $fallbackConstructor;  | 
            |
| 29 | 4 | $this->config = $config;  | 
            |
| 30 | 4 | $this->resolver = $resolver;  | 
            |
| 31 | 4 | }  | 
            |
| 32 | |||
| 33 | /**  | 
            ||
| 34 |      * {@inheritdoc} | 
            ||
| 35 | *  | 
            ||
| 36 | * @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException  | 
            ||
| 37 | */  | 
            ||
| 38 | 4 | public function construct(VisitorInterface $visitor, ClassMetadata $metadata, $data, array $type, DeserializationContext $context)  | 
            |
| 48 | }  | 
            ||
| 49 | }  | 
            ||
| 50 |