1
0
mirror of synced 2024-11-28 15:46:04 +03:00
service-bundle/Tests/DataFixtures/RequestDto.php

17 lines
283 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
{
/**
2022-07-20 14:54:24 +03:00
* @var string
2021-02-05 14:47:54 +03:00
* @Assert\NotNull()
* @JMS\Type("string")
2021-02-05 14:47:54 +03:00
*/
2022-07-20 14:54:24 +03:00
public $param;
2021-02-05 14:47:54 +03:00
}