* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Validator\Attribute; /** * Declares that constraints listed on the current class should be added to the given class. * * Classes that use this attribute should contain only properties and methods that * exist on the target class (not necessarily all of them). * * @author Nicolas Grekas */ #[\Attribute(\Attribute::TARGET_CLASS)] final class ExtendsValidationFor { /** * @param class-string $class */ public function __construct( public string $class, ) { } }