File Coverage

blib/lib/WWW/StatsMix/Stat.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package WWW::StatsMix::Stat;
2              
3             $WWW::StatsMix::Stat::VERSION = '0.05';
4              
5             =head1 NAME
6              
7             WWW::StatsMix::Stat - Placeholder for StatsMix Stat.
8              
9             =head1 VERSION
10              
11             Version 0.05
12              
13             =cut
14              
15 12     12   263 use 5.006;
  12         34  
  12         474  
16 12     12   7348 use Moo;
  12         157303  
  12         73  
17 12     12   23005 use namespace::clean;
  12         130825  
  12         105  
18              
19             has id => (is => 'ro');
20             has ref_id => (is => 'ro');
21             has profile_id => (is => 'ro');
22             has metric_id => (is => 'ro');
23             has value => (is => 'ro');
24             has meta => (is => 'ro');
25             has generated_at => (is => 'ro');
26             has created_at => (is => 'ro');
27             has updated_at => (is => 'ro');
28              
29             =head1 METHODS
30              
31             =head2 id()
32              
33             =head2 ref_id()
34              
35             =head2 profile_id()
36              
37             =head2 metric_id()
38              
39             =head2 value()
40              
41             =head2 meta()
42              
43             =head2 generated_at()
44              
45             =head2 created_at()
46              
47             =head2 updated_at()
48              
49             =head1 AUTHOR
50              
51             Mohammad S Anwar, C<< >>
52              
53             =head1 REPOSITORY
54              
55             L
56              
57             =head1 BUGS
58              
59             Please report any bugs or feature requests to C,
60             or through the web interface at L.
61             I will be notified, and then you'll automatically be notified of progress on your
62             bug as I make changes.
63              
64             =head1 SUPPORT
65              
66             You can find documentation for this module with the perldoc command.
67              
68             perldoc WWW::StatsMix::Stat
69              
70             You can also look for information at:
71              
72             =over 4
73              
74             =item * RT: CPAN's request tracker (report bugs here)
75              
76             L
77              
78             =item * AnnoCPAN: Annotated CPAN documentation
79              
80             L
81              
82             =item * CPAN Ratings
83              
84             L
85              
86             =item * Search CPAN
87              
88             L
89              
90             =back
91              
92             Copyright (C) 2014 - 2015 Mohammad S Anwar.
93              
94             This program is free software; you can redistribute it and/or modify it under
95             the terms of the the Artistic License (2.0). You may obtain a copy of the full
96             license at:
97              
98             L
99              
100             Any use, modification, and distribution of the Standard or Modified Versions is
101             governed by this Artistic License.By using, modifying or distributing the Package,
102             you accept this license. Do not use, modify, or distribute the Package, if you do
103             not accept this license.
104              
105             If your Modified Version has been derived from a Modified Version made by someone
106             other than you,you are nevertheless required to ensure that your Modified Version
107             complies with the requirements of this license.
108              
109             This license does not grant you the right to use any trademark, service mark,
110             tradename, or logo of the Copyright Holder.
111              
112             This license includes the non-exclusive, worldwide, free-of-charge patent license
113             to make, have made, use, offer to sell, sell, import and otherwise transfer the
114             Package with respect to any patent claims licensable by the Copyright Holder that
115             are necessarily infringed by the Package. If you institute patent litigation
116             (including a cross-claim or counterclaim) against any party alleging that the
117             Package constitutes direct or contributory patent infringement,then this Artistic
118             License to you shall terminate on the date that such litigation is filed.
119              
120             Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND
121             CONTRIBUTORS "AS IS' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED
122             WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
123             NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS
124             REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT,
125             INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE
126             OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
127              
128             =cut
129              
130             1; # End of WWW::StatsMix::Stat