you are looking for class.validator.php
there is a function called is_phone
function is_phone($phone) {
$stripped=eregi_replace("(\(|\)|\-|\+)","",ereg_replace("(+)","",$phone));
return (!is_numeric($stripped) || ((strlen($stripped)<7) || (strlen($stripped)>13)))?false;
}
you should be able to make changes there and it will reflect in the phone number.