1
0
mirror of synced 2024-11-25 06:16:06 +03:00
service-bundle/Tests/DataFixtures/RequestDto.php
Кривич Сергей 897df39d96 Update code base
2022-07-20 14:38:42 +03:00

16 lines
271 B
PHP

<?php
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
use Symfony\Component\Validator\Constraints as Assert;
use JMS\Serializer\Annotation as JMS;
class RequestDto
{
/**
* @Assert\NotNull()
* @JMS\Type("string")
*/
public string $param;
}