mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-03 08:09:25 +03:00
30 lines
408 B
PHP
30 lines
408 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;
|
|
|
|
/**
|
|
* Epic description.
|
|
*
|
|
* With multiple lines.
|
|
*
|
|
* @JMS\Type("array<integer>")
|
|
*/
|
|
public $baz;
|
|
|
|
}
|