File Coverage

blib/lib/Number/Phone/StubCountry/HT.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::HT;
20 2     2   1251 use base qw(Number::Phone::StubCountry);
  2         8  
  2         262  
21              
22 2     2   15 use strict;
  2         8  
  2         48  
23 2     2   13 use warnings;
  2         6  
  2         74  
24 2     2   13 use utf8;
  2         5  
  2         14  
25             our $VERSION = 1.20230307181420;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2 $3',
30             'leading_digits' => '[2-589]',
31             'pattern' => '(\\d{2})(\\d{2})(\\d{4})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '
37             2(?:
38             2\\d|
39             5[1-5]|
40             81|
41             9[149]
42             )\\d{5}
43             ',
44             'geographic' => '
45             2(?:
46             2\\d|
47             5[1-5]|
48             81|
49             9[149]
50             )\\d{5}
51             ',
52             'mobile' => '
53             (?:
54             [34]\\d|
55             55
56             )\\d{6}
57             ',
58             'pager' => '',
59             'personal_number' => '',
60             'specialrate' => '',
61             'toll_free' => '8\\d{7}',
62             'voip' => '
63             9(?:
64             [67][0-4]|
65             8[0-3589]|
66             9\\d
67             )\\d{5}
68             '
69             };
70              
71             sub new {
72 13     13 1 39 my $class = shift;
73 13         28 my $number = shift;
74 13         90 $number =~ s/(^\+509|\D)//g;
75 13         70 my $self = bless({ country_code => '509', number => $number, formatters => $formatters, validators => $validators, }, $class);
76 13 100       59 return $self->is_valid() ? $self : undef;
77             }
78             1;