InlineChild.php 229 B

123456789101112131415161718
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures;
  3. use JMS\Serializer\Annotation\Type;
  4. class InlineChild
  5. {
  6. /**
  7. * @Type("string")
  8. */
  9. public $a = 'a';
  10. /**
  11. * @Type("string")
  12. */
  13. public $b = 'b';
  14. }