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