You are here

UserIdConstraint.php in Scheduled Updates 8

File

tests/modules/scheduled_updates_tests/src/Plugin/Validation/Constraint/UserIdConstraint.php
View source
<?php

namespace Drupal\scheduled_updates_tests\Plugin\Validation\Constraint;

use Symfony\Component\Validator\Constraint;

/**
 * Checks for the user id.
 *
 * @Constraint(
 *   id = "UserId",
 *   label = @Translation("User Id", context = "Validation")
 * )
 *
 */
class UserIdConstraint extends Constraint {

}

Classes

Namesort descending Description
UserIdConstraint Checks for the user id.