File Coverage

blib/lib/EntityModel/Query/ReturningField.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             package EntityModel::Query::ReturningField;
2             {
3             $EntityModel::Query::ReturningField::VERSION = '0.102';
4             }
5             use EntityModel::Class {
6 16         134 _isa => [qw(EntityModel::Query::Field)],
7 16     16   10821 };
  16         33  
8              
9             =head1 NAME
10              
11             EntityModel::Query::ReturningField - fields returned by a statement
12              
13             =head1 VERSION
14              
15             version 0.102
16              
17             =head1 SYNOPSIS
18              
19             See L.
20              
21             =head1 DESCRIPTION
22              
23             See L.
24              
25             =cut
26              
27             =head1 METHODS
28              
29             =cut
30              
31             =head2 import
32              
33             Register parse handling.
34              
35             =cut
36              
37             sub import {
38 16     16   33 my $class = shift;
39             $class->register(
40             'returning' => sub {
41 1     1   2 my $self = shift;
42 1         15 $self->parse_base(
43             @_,
44             method => 'returning',
45             type => 'EntityModel::Query::ReturningField'
46             );
47             }
48 16         205 );
49             }
50              
51             1;
52              
53             __END__