20 lines
291 B
PHP
20 lines
291 B
PHP
<?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;
|
|
}
|