| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package MojoMojo::Model::DBIC; |
|
2
|
|
|
|
|
|
|
|
|
3
|
35
|
|
|
35
|
|
16581
|
use strict; |
|
|
35
|
|
|
|
|
92
|
|
|
|
35
|
|
|
|
|
1116
|
|
|
4
|
35
|
|
|
35
|
|
188
|
use parent 'Catalyst::Model::DBIC::Schema'; |
|
|
35
|
|
|
|
|
81
|
|
|
|
35
|
|
|
|
|
258
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->config( schema_class => 'MojoMojo::Schema' ); |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
=head1 NAME |
|
9
|
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
MojoMojo::Model::DBIC - L<DBIC::Schema> Catalyst model |
|
11
|
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
=head1 SYNOPSIS |
|
13
|
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
See L<MojoMojo> |
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 DESCRIPTION |
|
17
|
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
L<Catalyst::Model::DBIC::Schema> Model using schema in L<MojoMojo::Schema>. |
|
19
|
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 AUTHOR |
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
Marcus Ramberg <mramberg@cpan.org> |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 LICENSE |
|
25
|
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
This library is free software. You can redistribute it and/or modify |
|
27
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
|
28
|
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=cut |
|
30
|
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
1; |