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