rector/packages-tests/BetterPhpDocParser/PhpDocParser/TagValueNodeReprint/Fixture/AssertChoice/AssertChoiceWithCeroOnOptions.php

16 lines
320 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Tests\BetterPhpDocParser\PhpDocParser\TagValueNodeReprint\Fixture\AssertChoice;
use Symfony\Component\Validator\Constraints as Assert;
class AssertChoiceWithCeroOnOptions
{
/**
* @Assert\Choice(choices={"0", "3023", "3610"})
*/
public $ratingType;
}