1
0
mirror of synced 2024-11-25 06:16:06 +03:00
service-bundle/Tests/DataFixtures/RequestDto.php

22 lines
369 B
PHP
Raw Normal View History

2021-02-05 14:47:54 +03:00
<?php
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
use Symfony\Component\Validator\Constraints as Assert;
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()
* @JMS\Type("string")
2021-02-05 14:47:54 +03:00
*/
public $param;
}