2021-02-05 14:47:54 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
|
|
|
|
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
2021-02-17 09:31:36 +03:00
|
|
|
use JMS\Serializer\Annotation as JMS;
|
2021-02-05 14:47:54 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class RequestDto
|
|
|
|
*
|
|
|
|
* @package RetailCrm\ServiceBundle\Tests\DataFixtures
|
|
|
|
*/
|
|
|
|
class RequestDto
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
* @Assert\NotNull()
|
2021-02-17 09:31:36 +03:00
|
|
|
* @JMS\Type("string")
|
2021-02-05 14:47:54 +03:00
|
|
|
*/
|
|
|
|
public $param;
|
|
|
|
}
|