20 lines
304 B
PHP
20 lines
304 B
PHP
<?php
|
|
|
|
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
/**
|
|
* Class RequestDto
|
|
*
|
|
* @package RetailCrm\ServiceBundle\Tests\DataFixtures
|
|
*/
|
|
class RequestDto
|
|
{
|
|
/**
|
|
* @var string
|
|
* @Assert\NotNull()
|
|
*/
|
|
public $param;
|
|
}
|