line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
use strict; |
3
|
2
|
|
|
2
|
|
1203
|
use warnings; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
50
|
|
4
|
2
|
|
|
2
|
|
9
|
|
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
38
|
|
5
|
|
|
|
|
|
|
use Moo; |
6
|
2
|
|
|
2
|
|
9
|
use utf8; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
9
|
|
7
|
2
|
|
|
2
|
|
613
|
use Scalar::Util qw(looks_like_number); |
|
2
|
|
|
|
|
8
|
|
|
2
|
|
|
|
|
40
|
|
8
|
2
|
|
|
2
|
|
57
|
use namespace::clean; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
82
|
|
9
|
2
|
|
|
2
|
|
18
|
|
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
10
|
|
10
|
|
|
|
|
|
|
with 'Dancer2::Plugin::FormValidator::Role::Validator'; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
return { |
13
|
|
|
|
|
|
|
en => '%s must be no more %d characters long', |
14
|
|
|
|
|
|
|
ru => '%s должно содержать не более %d символов', |
15
|
1
|
|
|
1
|
0
|
1282
|
de => '%s kann nicht mehr als %d Zeichen enthalten', |
16
|
|
|
|
|
|
|
}; |
17
|
|
|
|
|
|
|
} |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
my ($self, $field, $input, $max) = @_; |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
if ($self->_field_defined_and_non_empty($field, $input)) { |
22
|
3
|
|
|
3
|
0
|
8
|
return length($input->{$field}) <= $max; |
23
|
|
|
|
|
|
|
} |
24
|
3
|
50
|
|
|
|
12
|
|
25
|
3
|
|
|
|
|
21
|
return 1; |
26
|
|
|
|
|
|
|
} |
27
|
|
|
|
|
|
|
|
28
|
0
|
|
|
|
|
|
1; |