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

16 lines
365 B
PHP

<?php
declare(strict_types=1);
namespace Rector\Tests\BetterPhpDocParser\PhpDocParser\TagValueNodeReprint\Fixture\AssertChoice;
use Symfony\Component\Validator\Constraints as Assert;
class AssertChoiceWithManyGroups
{
/**
* @Assert\Choice(callback={"App\Entity\Genre", "getGenres"}, groups={"registration", "again"})
*/
private $ratingType;
}