From 7f5c2b61e4a9a1e7d2a86acfe5998945804df544 Mon Sep 17 00:00:00 2001 From: Milwad Khosravi Date: Sat, 8 Jun 2024 16:05:25 +0330 Subject: [PATCH] Update CountryPhoneCallback.php --- src/Utils/CountryPhoneCallback.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/Utils/CountryPhoneCallback.php b/src/Utils/CountryPhoneCallback.php index bfdde59..8834e2e 100644 --- a/src/Utils/CountryPhoneCallback.php +++ b/src/Utils/CountryPhoneCallback.php @@ -6,9 +6,6 @@ class CountryPhoneCallback { /** * Create a new phone validator instance. - * - * @param mixed $value The phone number to validate. - * @param string $code The country codes to validate against. String can be separated by comma */ public function __construct(private mixed $value, private string $code, ?string $attribute = null) { @@ -155,8 +152,6 @@ protected function validateZH(): false|int /** * Call the phone validator method for each country code and return the results. * - * @return array An array of validation results, where each key is a country code and the value is either `true` or `false`. - * * @throws \BadMethodCallException if the validator method for a country code does not exist. */ public function callPhoneValidator(): array