12345678910111213141516171819 |
- <?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();
- }
- }
|