for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Milwad\LaravelValidate\Utils\CountryPhoneValidator;
class ZHPhoneValidator implements CountryPhoneValidator
{
/**
* Validate Chinese phone numbers.
*/
public function validate($value): bool
return preg_match('/^(?:\+86)?1[3-9]\d{9}$/', $value);
return preg_match('/^(?:...1[3-9]\d{9}$/', $value)
integer
boolean
}