Node.php 308 B

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