for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Milwad\LaravelValidate\Utils\CountryPhoneValidator;
class IDPhoneValidator implements CountryPhoneValidator
{
/**
* Validate Indonesia phone numbers.
*/
public function validate($value): bool
return preg_match('/^(?:\+62|0)(?:\d{2,3}\s?){1,2}\d{4,8}$/', $value);
return preg_match('/^(?:...1,2}\d{4,8}$/', $value)
integer
boolean
}