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