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