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

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