Tree.php 257 B

123456789101112131415161718
  1. <?php
  2. namespace JMS\Serializer\Tests\Fixtures;
  3. use JMS\Serializer\Annotation as Serializer;
  4. class Tree
  5. {
  6. /**
  7. * @Serializer\MaxDepth(10)
  8. */
  9. public $tree;
  10. public function __construct($tree)
  11. {
  12. $this->tree = $tree;
  13. }
  14. }