20 lines
309 B
PHP
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();
|
|
}
|
|
}
|