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