Remove phone validation
This commit is contained in:
parent
856d6027a2
commit
2438e94261
|
@ -178,6 +178,7 @@ class DataBaseConnector
|
||||||
* @return bool
|
* @return bool
|
||||||
*/
|
*/
|
||||||
public function checknumberValidity($phone){
|
public function checknumberValidity($phone){
|
||||||
|
return true;
|
||||||
try {
|
try {
|
||||||
return $this->messenger->checkPhoneExist($phone);
|
return $this->messenger->checkPhoneExist($phone);
|
||||||
} catch(\Throwable $ex){
|
} catch(\Throwable $ex){
|
||||||
|
|
|
@ -106,6 +106,7 @@ class DataBaseConnector
|
||||||
}
|
}
|
||||||
|
|
||||||
public function checknumberValidity($phone){
|
public function checknumberValidity($phone){
|
||||||
|
return true;
|
||||||
try {
|
try {
|
||||||
return true;//$this->messenger->checkPhoneExist($phone);
|
return true;//$this->messenger->checkPhoneExist($phone);
|
||||||
} catch(\Throwable $ex){
|
} catch(\Throwable $ex){
|
||||||
|
|
Loading…
Reference in New Issue