17 lines
283 B
PHP
17 lines
283 B
PHP
<?php
|
|
|
|
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
use JMS\Serializer\Annotation as JMS;
|
|
|
|
class RequestDto
|
|
{
|
|
/**
|
|
* @var string
|
|
* @Assert\NotNull()
|
|
* @JMS\Type("string")
|
|
*/
|
|
public $param;
|
|
}
|