EntityLabelNotNullConstraint.php in Automatic Entity Label 8.2
Same filename and directory in other branches
File
src/Plugin/Validation/EntityLabelNotNullConstraint.phpView source
<?php
namespace Drupal\auto_entitylabel\Plugin\Validation;
use Drupal\Core\Validation\Plugin\Validation\Constraint\NotNullConstraint;
/**
* Class for Entity Label Not Null Constraint.
*
* Custom override of NotNull constraint to allow empty entity labels to
* validate before the automatic label is set.
*/
class EntityLabelNotNullConstraint extends NotNullConstraint {
}
Classes
Name | Description |
---|---|
EntityLabelNotNullConstraint | Class for Entity Label Not Null Constraint. |