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