12345678910111213141516171819 |
- <?php
- namespace JMS\Serializer\Tests\Fixtures\MaxDepth;
- use JMS\Serializer\Annotation as Serializer;
- class Gh236Bar
- {
- /**
- * @Serializer\Expose()
- */
- public $xxx = 'yyy';
- /**
- * @Serializer\Expose()
- * @Serializer\SkipWhenEmpty()
- */
- public $inner;
- }
|