File Coverage

blib/lib/Number/Phone/StubCountry/CY.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::CY;
20 2     2   1421 use base qw(Number::Phone::StubCountry);
  2         7  
  2         292  
21              
22 2     2   19 use strict;
  2         5  
  2         56  
23 2     2   14 use warnings;
  2         9  
  2         70  
24 2     2   18 use utf8;
  2         5  
  2         12  
25             our $VERSION = 1.20230903131447;
26              
27             my $formatters = [
28             {
29             'format' => '$1 $2',
30             'leading_digits' => '[257-9]',
31             'pattern' => '(\\d{2})(\\d{6})'
32             }
33             ];
34              
35             my $validators = {
36             'fixed_line' => '2[2-6]\\d{6}',
37             'geographic' => '2[2-6]\\d{6}',
38             'mobile' => '
39             9(?:
40             10|
41             [4-79]\\d
42             )\\d{5}
43             ',
44             'pager' => '',
45             'personal_number' => '700\\d{5}',
46             'specialrate' => '(80[1-9]\\d{5})|(90[09]\\d{5})|(
47             (?:
48             50|
49             77
50             )\\d{6}
51             )',
52             'toll_free' => '800\\d{5}',
53             'voip' => ''
54             };
55              
56             sub new {
57 22     22 1 60 my $class = shift;
58 22         46 my $number = shift;
59 22         143 $number =~ s/(^\+357|\D)//g;
60 22         153 my $self = bless({ country_code => '357', number => $number, formatters => $formatters, validators => $validators, }, $class);
61 22 100       103 return $self->is_valid() ? $self : undef;
62             }
63             1;