for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ScayTrase\Api\Cruds\Adaptors\JmsSerializer;
use JMS\Serializer\VisitorInterface;
use JMS\Serializer\Metadata\ClassMetadata;
use JMS\Serializer\DeserializationContext;
use JMS\Serializer\Construction\ObjectConstructorInterface;
/**
* Object constructor that allows deserialization into already constructed
* objects passed through the deserialization context
*/
final class InitializedObjectConstructor implements ObjectConstructorInterface
{
private $fallbackConstructor;
* Constructor.
*
* @param ObjectConstructorInterface $fallbackConstructor Fallback object constructor
public function __construct(ObjectConstructorInterface $fallbackConstructor)
$this->fallbackConstructor = $fallbackConstructor;
}
* {@inheritdoc}
public function construct(VisitorInterface $visitor, ClassMetadata $metadata, $data, array $type, DeserializationContext $context)
if ($context->attributes->containsKey('target') && $context->getDepth() === 1) {
return $context->attributes->get('target')->get();
return $this->fallbackConstructor->construct($visitor, $metadata, $data, $type, $context);