1<?php 2 3declare(strict_types=1); 4 5namespace JMS\Serializer\Tests\Fixtures; 6 7use JMS\Serializer\Annotation\Type; 8 9class CustomDeserializationObject 10{ 11 /** 12 * @Type("string") 13 */ 14 public $someProperty; 15 16 public function __construct($value) 17 { 18 $this->someProperty = $value; 19 } 20} 21