Upgraded drupal core with security updates
[yaffs-website] / web / core / modules / aggregator / src / Plugin / Validation / Constraint / FeedTitleConstraint.php
1 <?php
2
3 namespace Drupal\aggregator\Plugin\Validation\Constraint;
4
5 use Drupal\Core\Validation\Plugin\Validation\Constraint\UniqueFieldConstraint;
6
7 /**
8  * Supports validating feed titles.
9  *
10  * @Constraint(
11  *   id = "FeedTitle",
12  *   label = @Translation("Feed title", context = "Validation")
13  * )
14  */
15 class FeedTitleConstraint extends UniqueFieldConstraint {
16
17   public $message = 'A feed named %value already exists. Enter a unique title.';
18
19 }