mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-04-12 21:50:54 +00:00
18 lines
236 B
PHP
18 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;
|
|
}
|