File: ResultSet.pm

package info (click to toggle)
libdbix-class-helpers-perl 2.033004-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 980 kB
  • sloc: perl: 4,722; sql: 173; makefile: 7
file content (11 lines) | stat: -rw-r--r-- 170 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
package TestSchema::ResultSet;

use strict;
use warnings;

use parent 'DBIx::Class::ResultSet';

__PACKAGE__->load_components('Helper::ResultSet::IgnoreWantarray');

1;