mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
24 lines
366 B
PHP
24 lines
366 B
PHP
|
<?php
|
||
|
|
||
|
namespace Nelmio\ApiDocBundle\Tests\Fixtures\Model;
|
||
|
|
||
|
use JMS\Serializer\Annotation as JMS;
|
||
|
use Symfony\Component\Validator\Constraints as Assert;
|
||
|
|
||
|
class MultipleTest
|
||
|
{
|
||
|
public $nothing;
|
||
|
|
||
|
/**
|
||
|
* @Assert\Type("DateTime")
|
||
|
*/
|
||
|
public $bar;
|
||
|
|
||
|
/**
|
||
|
* @JMS\Type("DateTime")
|
||
|
* @JMS\SerializedName("number");
|
||
|
*/
|
||
|
public $baz;
|
||
|
|
||
|
}
|