Skip to content

Commit

Permalink
Fix to alpha_complete validator
Browse files Browse the repository at this point in the history
  • Loading branch information
micheleangioni committed Mar 1, 2019
1 parent c7e9ecb commit 7f24366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MicheleAngioni/Support/CustomValidators.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class CustomValidators extends \Illuminate\Validation\Validator
*/
public function validateAlphaComplete($attribute, $value)
{
return preg_match('/^([|=#-\p{L}*0-9_+!.,:\/;\\?&\(\)\[\]\{\}\'\"\s])+$/u', $value);
return preg_match('/^([|=#\-\p{L}*0-9_+!.,:\/;\\?&\(\)\[\]\{\}\'\"\s])+$/u', $value);
}

/**
Expand Down

0 comments on commit 7f24366

Please sign in to comment.