File Coverage

blib/lib/Number/Phone/StubCountry/FK.pm
Criterion Covered Total %
statement 17 17 100.0
branch 2 2 100.0
condition n/a
subroutine 5 5 100.0
pod 1 1 100.0
total 25 25 100.0


line stmt bran cond sub pod time code
1             # automatically generated file, don't edit
2              
3              
4              
5             # Copyright 2023 David Cantrell, derived from data from libphonenumber
6             # http://code.google.com/p/libphonenumber/
7             #
8             # Licensed under the Apache License, Version 2.0 (the "License");
9             # you may not use this file except in compliance with the License.
10             # You may obtain a copy of the License at
11             #
12             # http://www.apache.org/licenses/LICENSE-2.0
13             #
14             # Unless required by applicable law or agreed to in writing, software
15             # distributed under the License is distributed on an "AS IS" BASIS,
16             # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17             # See the License for the specific language governing permissions and
18             # limitations under the License.
19             package Number::Phone::StubCountry::FK;
20 3     3   1533 use base qw(Number::Phone::StubCountry);
  3         107  
  3         397  
21              
22 3     3   29 use strict;
  3         6  
  3         74  
23 3     3   17 use warnings;
  3         10  
  3         71  
24 3     3   17 use utf8;
  3         8  
  3         16  
25             our $VERSION = 1.20230307181420;
26              
27             my $formatters = [];
28              
29             my $validators = {
30             'fixed_line' => '[2-47]\\d{4}',
31             'geographic' => '[2-47]\\d{4}',
32             'mobile' => '[56]\\d{4}',
33             'pager' => '',
34             'personal_number' => '',
35             'specialrate' => '',
36             'toll_free' => '',
37             'voip' => ''
38             };
39              
40             sub new {
41 15     15 1 36 my $class = shift;
42 15         25 my $number = shift;
43 15         76 $number =~ s/(^\+500|\D)//g;
44 15         79 my $self = bless({ country_code => '500', number => $number, formatters => $formatters, validators => $validators, }, $class);
45 15 100       65 return $self->is_valid() ? $self : undef;
46             }
47             1;