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