7516ec60cb
* add callback argument value resolver * add jms serializer support * add phpdoc * fix FrontApiClientAuthenticator
22 lines
369 B
PHP
22 lines
369 B
PHP
<?php
|
|
|
|
namespace RetailCrm\ServiceBundle\Tests\DataFixtures;
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
use JMS\Serializer\Annotation as JMS;
|
|
|
|
/**
|
|
* Class RequestDto
|
|
*
|
|
* @package RetailCrm\ServiceBundle\Tests\DataFixtures
|
|
*/
|
|
class RequestDto
|
|
{
|
|
/**
|
|
* @var string
|
|
* @Assert\NotNull()
|
|
* @JMS\Type("string")
|
|
*/
|
|
public $param;
|
|
}
|