Kernel::System::DataValidation::Validator::PhoneNumber

NAME

Kernel::System::DataValidation::Validator::PhoneNumber – Validator that verifies if the value is a valid phone number.

PUBLIC INTERFACE

Provides a Check method, that will be called by the Kernel::System::DataValidation backend.

Check()

Checks if the given value is an valid phone number.

    my $Result = $Validator->Check(
        Value => '+315912345678',
    );
Scroll to Top