line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
our $VERSION = '0.004'; |
2
|
|
|
|
|
|
|
use Moo; |
3
|
2
|
|
|
2
|
|
12
|
extends 'WebService::ValidSign::Object'; |
|
2
|
|
|
|
|
4
|
|
|
2
|
|
|
|
|
10
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
# ABSTRACT: A ceremony object |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
use Types::Standard qw(Bool); |
8
|
2
|
|
|
2
|
|
598
|
|
|
2
|
|
|
|
|
5
|
|
|
2
|
|
|
|
|
9
|
|
9
|
|
|
|
|
|
|
has '+type' => ( required => 0 ); |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
has in_person => ( |
12
|
|
|
|
|
|
|
is => 'rw', |
13
|
|
|
|
|
|
|
isa => Bool, |
14
|
|
|
|
|
|
|
default => 0, |
15
|
|
|
|
|
|
|
); |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
__PACKAGE__->meta->make_immutable; |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=pod |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=encoding UTF-8 |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 NAME |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
WebService::ValidSign::Object::Ceremony - A ceremony object |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head1 VERSION |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
version 0.004 |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head1 AUTHOR |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
Wesley Schwengle <waterkip@cpan.org> |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 COPYRIGHT AND LICENSE |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
This software is Copyright (c) 2019 by Wesley Schwengle. |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
This is free software, licensed under: |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The (three-clause) BSD License |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |