Skip to content

Commit

Permalink
Fixed error - missing "$" in parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
excelwebzone committed Apr 8, 2022
1 parent da74e94 commit db5a2a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Validator/Constraints/IsTrue.php
Expand Up @@ -15,7 +15,7 @@ class IsTrue extends Constraint

public $invalidHostMessage = 'The captcha was not resolved on the right domain.';

public function __construct(array $options = null, string $message = null, string invalidHostMessage = null, array $groups = null, $payload = null)
public function __construct(array $options = null, string $message = null, string $invalidHostMessage = null, array $groups = null, $payload = null)
{
parent::__construct($options ?? [], $groups, $payload);

Expand Down

0 comments on commit db5a2a8

Please sign in to comment.