Gh236Bar.php 291 B

12345678910111213141516171819
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures\MaxDepth;
  3. use JMS\Serializer\Annotation as Serializer;
  4. class Gh236Bar
  5. {
  6. /**
  7. * @Serializer\Expose()
  8. */
  9. public $xxx = 'yyy';
  10. /**
  11. * @Serializer\Expose()
  12. * @Serializer\SkipWhenEmpty()
  13. */
  14. public $inner;
  15. }