CustomDeserializationObject.php 292 B

123456789101112131415161718
  1. <?php
  2. namespace JMS\SerializerBundle\Tests\Fixtures;
  3. use JMS\SerializerBundle\Annotation\Type;
  4. class CustomDeserializationObject
  5. {
  6. /**
  7. * @Type("string")
  8. */
  9. public $someProperty;
  10. public function __construct($value)
  11. {
  12. $this->someProperty = $value;
  13. }
  14. }