IsNullConstraint.php in Zircon Profile 8
Same filename and directory in other branches
File
core/lib/Drupal/Core/Validation/Plugin/Validation/Constraint/IsNullConstraint.phpView source
<?php
/**
* @file
* Contains \Drupal\Core\Validation\Plugin\Validation\Constraint\IsNullConstraint.
*/
namespace Drupal\Core\Validation\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraints\IsNull;
/**
* Null constraint.
*
* Overrides the symfony constraint to handle empty Typed Data structures.
*
* @Constraint(
* id = "Null",
* label = @Translation("Null", context = "Validation"),
* type = false
* )
*/
class IsNullConstraint extends IsNull {
}
Classes
Name | Description |
---|---|
IsNullConstraint | Null constraint. |