src/Core/Validator/Constraints/Valid.php line 27
<?phpdeclare(strict_types=1);/*** Copyright (c) 2022 TECLA Consulting Group oü.* All rights reserved.** This unpublished material is proprietary to TECLA Consulting Group oü.* All rights reserved. The methods and* techniques described herein are considered trade secrets* and/or confidential. Reproduction or distribution, in whole* or in part, is forbidden except by express written permission* of TECLA Consulting Group oü.** @author Matúš Sýkorjak <matus@tecla.no>* @copyright 2022 TECLA Consulting Group oü*/namespace App\Core\Validator\Constraints;use Symfony\Component\Validator\Constraint;final class Valid extends Constraint{public array $validationGroups = [];public function __construct(array $options = null,?array $groups = null,mixed $payload = null,?array $validationGroups = null) {parent::__construct($options ?? [], $groups, $payload);$this->validationGroups = $validationGroups ?? $this->validationGroups;}public function getTargets(): array|string{return [self::CLASS_CONSTRAINT, self::PROPERTY_CONSTRAINT];}}