30 lines
408 B
PHP
Raw Normal View History

<?php
namespace Nelmio\ApiDocBundle\Tests\Fixtures\Model;
use JMS\SerializerBundle\Annotation as JMS;
class JmsNested
{
/**
* @JMS\Type("DateTime");
* @JMS\ReadOnly
*/
public $foo;
/**
* @JMS\Type("string");
*/
public $bar;
2012-08-24 11:12:36 -04:00
/**
* Epic description.
*
* With multiple lines.
*
* @JMS\Type("array<integer>")
*/
public $baz;
}