/**
  * Constructor
  *
  * @param PropertyTransformerInterface $transformer
  * @param RegistryInterface            $doctrine
  * @param string                       $valueClass
  */
 public function __construct(PropertyTransformerInterface $transformer, ManagerRegistry $doctrine, $valueClass)
 {
     $this->valueClass = $valueClass;
     parent::__construct($transformer, $doctrine);
 }