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