vendor/shopware/core/Framework/Validation/Constraint/Uuid.php line 7

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