File Coverage

blib/lib/FirePHP/LogConnector/Null.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 FirePHP::LogConnector::Null;
2              
3             =pod
4              
5             =head1 NAME
6              
7             FirePHP::LogConnector::Null
8              
9             =head1 DESCRIPTION
10              
11             B<FirePHP::LogConnector::Null> represents an unconnected
12             connector. This will be useful to streamline the usage
13             of FirePHP but is just a stub right now.
14              
15             =cut
16              
17 1     1   1224 use strict;
  1         2  
  1         37  
18 1     1   4 use warnings;
  1         2  
  1         30  
19              
20 1     1   7 use base qw/FirePHP::LogConnector/;
  1         2  
  1         92  
21              
22             1;
23              
24             __END__
25              
26             =head1 SEE ALSO
27              
28             L<http://www.firephp.org>, L<FirePHP::Dispatcher>
29              
30             =head1 AUTHOR
31              
32             Sebastian Willert, C<willert@cpan.org>
33              
34             =head1 COPYRIGHT AND LICENSE
35              
36             Copyright 2009 by Sebastian Willert E<lt>willert@cpan.orgE<gt>
37              
38             This library is free software; you can redistribute it and/or modify
39             it under the same terms as Perl itself.
40              
41             =cut