src/Czech/Validator/Password/PasswordMatch.php line 6

Open in your IDE?
  1. <?php
  2. namespace Czech\Validator\Password;
  3. use Symfony\Component\Validator\Constraint;
  4. class PasswordMatch extends Constraint
  5. {
  6.     public string $message 'Potvrzující heslo se musí shodovat s heslem';
  7.     public function __construct$options null)
  8.     {
  9.         parent::__construct($options);
  10.     }
  11. }