File Coverage

blib/lib/SemanticWeb/Schema/Dentist.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1 1     1   1398 use utf8;
  1         16  
  1         6  
2              
3             package SemanticWeb::Schema::Dentist;
4              
5             # ABSTRACT: A dentist.
6              
7 1     1   61 use v5.14;
  1         3  
8 1     1   890 use Moo;
  1         11601  
  1         5  
9              
10             extends qw/ SemanticWeb::Schema::MedicalBusiness SemanticWeb::Schema::MedicalOrganization /;
11              
12              
13 1     1   1945 use MooX::JSON_LD 'Dentist';
  1         18066  
  1         9  
14 1     1   128376 use Ref::Util qw/ is_plain_hashref /;
  1         624  
  1         79  
15             # RECOMMEND PREREQ: Ref::Util::XS
16              
17 1     1   498 use namespace::autoclean;
  1         14020  
  1         4  
18              
19             our $VERSION = 'v21.0.1';
20              
21              
22              
23              
24             1;
25              
26             __END__
27              
28             =pod
29              
30             =encoding UTF-8
31              
32             =head1 NAME
33              
34             SemanticWeb::Schema::Dentist - A dentist.
35              
36             =head1 VERSION
37              
38             version v21.0.1
39              
40             =head1 DESCRIPTION
41              
42             A dentist.
43              
44             =head1 SEE ALSO
45              
46             L<SemanticWeb::Schema::MedicalOrganization>
47              
48             =head1 SOURCE
49              
50             The development version is on github at L<https://github.com/robrwo/SemanticWeb-Schema>
51             and may be cloned from L<git://github.com/robrwo/SemanticWeb-Schema.git>
52              
53             =head1 BUGS
54              
55             Please report any bugs or feature requests on the bugtracker website
56             L<https://github.com/robrwo/SemanticWeb-Schema/issues>
57              
58             When submitting a bug or request, please include a test-file or a
59             patch to an existing test-file that illustrates the bug or desired
60             feature.
61              
62             =head1 AUTHOR
63              
64             Robert Rothenberg <rrwo@cpan.org>
65              
66             =head1 COPYRIGHT AND LICENSE
67              
68             This software is Copyright (c) 2018-2023 by Robert Rothenberg.
69              
70             This is free software, licensed under:
71              
72             The Artistic License 2.0 (GPL Compatible)
73              
74             =cut