commands-1.x-dev/modules/tasks/src/Plugin/Validation/Constraint/TaskCommandsCreateConstraint.php
modules/tasks/src/Plugin/Validation/Constraint/TaskCommandsCreateConstraint.php
<?php
declare(strict_types=1);
namespace Drupal\tasks\Plugin\Validation\Constraint;
use Symfony\Component\Validator\Constraint;
/**
* Provides a TaskCommandsCreate constraint.
*
* @Constraint(
* id = "tasks_commands_create",
* label = @Translation("TaskCommandsCreate", context = "Validation"),
* )
*
* @see https://www.drupal.org/node/2015723.
*/
final class TaskCommandsCreateConstraint extends Constraint {
public string $message = '@todo Specify error message here.';
}
