mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
19 lines
236 B
PHP
19 lines
236 B
PHP
|
<?php
|
||
|
|
||
|
namespace Nelmio\ApiDocBundle\Tests\Fixtures\Model;
|
||
|
|
||
|
use JMS\Serializer\Annotation as JMS;
|
||
|
|
||
|
class JmsInline
|
||
|
{
|
||
|
/**
|
||
|
* @JMS\Type("string");
|
||
|
*/
|
||
|
public $foo;
|
||
|
|
||
|
/**
|
||
|
* @JMS\Inline
|
||
|
*/
|
||
|
public $inline;
|
||
|
}
|