. */ declare(strict_types=1); namespace App\Validator\Constraints; use Symfony\Component\Validator\Constraint; /** * A PermissionEmbed object with this annotation will be checked with ValidPermissionValidator. * That means the alsoSet values of the permission operations are set. * */ #[\Attribute(\Attribute::TARGET_PROPERTY)] class ValidPermission extends Constraint { }