mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
21 lines
276 B
PHP
21 lines
276 B
PHP
|
<?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;
|
||
|
|
||
|
}
|