mirror of
https://github.com/symfony/validator.git
synced 2026-03-24 01:12:13 +01:00
33 lines
784 B
PHP
33 lines
784 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* 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 <p@tchwork.com>
|
|
*/
|
|
#[\Attribute(\Attribute::TARGET_CLASS)]
|
|
final class ExtendsValidationFor
|
|
{
|
|
/**
|
|
* @param class-string $class
|
|
*/
|
|
public function __construct(
|
|
public string $class,
|
|
) {
|
|
}
|
|
}
|