TplBlock/vendor/jms/serializer/tests/Fixtures/MaxDepth/Gh236Foo.php
2018-03-26 21:57:35 +02:00

20 lines
309 B
PHP

<?php
namespace JMS\Serializer\Tests\Fixtures\MaxDepth;
use JMS\Serializer\Annotation as Serializer;
class Gh236Foo
{
/**
* @Serializer\MaxDepth(1)
*/
public $a;
public function __construct()
{
$this->a = new Gh236Bar();
$this->a->inner = new Gh236Bar();
}
}