File Coverage

blib/lib/Address/PostCode/UK/Place.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


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