21 lines
272 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
}