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