File Coverage

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