src/Core/Framework/Validation/Constraint/Uuid.php line 9

  1. <?php declare(strict_types=1);
  2. namespace Shopware\Core\Framework\Validation\Constraint;
  3. use Shopware\Core\Framework\Log\Package;
  4. use Symfony\Component\Validator\Constraint;
  5. #[Package('core')]
  6. class Uuid extends Constraint
  7. {
  8.     final public const INVALID_MESSAGE 'The string "{{ string }}" is not a valid uuid.';
  9.     final public const INVALID_TYPE_MESSAGE 'This value should be of type string.';
  10. }