View | Details | Raw Unified | Return to bug 38664
Collapse All | Expand All

(-)a/Koha/Schema.pm (-1 / +2 lines)
Lines 1-5 Link Here
1
use utf8;
1
use utf8;
2
3
package Koha::Schema;
2
package Koha::Schema;
4
3
5
# Created by DBIx::Class::Schema::Loader
4
# Created by DBIx::Class::Schema::Loader
Lines 12-19 use base 'DBIx::Class::Schema'; Link Here
12
11
13
__PACKAGE__->load_namespaces;
12
__PACKAGE__->load_namespaces;
14
13
14
15
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
15
# Created by DBIx::Class::Schema::Loader v0.07025 @ 2013-10-14 20:56:21
16
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oDUxXckmfk6H9YCjW8PZTw
16
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oDUxXckmfk6H9YCjW8PZTw
17
17
18
18
# You can replace this text with custom content, and it will be preserved on regeneration
19
# You can replace this text with custom content, and it will be preserved on regeneration
19
1;
20
1;
(-)a/misc/devel/tidy.pl (-2 / +2 lines)
Lines 106-113 sub tidy { Link Here
106
106
107
sub get_perl_files {
107
sub get_perl_files {
108
    my @files;
108
    my @files;
109
    push @files, qx{git ls-files '*.pl' '*.pm' '*.t' ':(exclude)Koha/Schema/Result'};
109
    push @files, qx{git ls-files '*.pl' '*.pm' '*.t' ':(exclude)Koha/Schema/Result' ':(exclude)Koha/Schema.pm'};
110
    push @files, qx{git ls-files svc opac/svc};                                         # Files without extension
110
    push @files, qx{git ls-files svc opac/svc};    # Files without extension
111
    chomp for @files;
111
    chomp for @files;
112
    return @files;
112
    return @files;
113
}
113
}
(-)a/xt/perltidy.t (-3 / +2 lines)
Lines 4-11 use Test::PerlTidy; Link Here
4
use Test::More;
4
use Test::More;
5
5
6
my @files;
6
my @files;
7
push @files, qx{git ls-files '*.pl' '*.pm' '*.t' ':(exclude)Koha/Schema/Result'};
7
push @files, qx{git ls-files '*.pl' '*.pm' '*.t' ':(exclude)Koha/Schema/Result' ':(exclude)Koha/Schema.pm'};
8
push @files, qx{git ls-files svc opac/svc};                                         # Files without extension
8
push @files, qx{git ls-files svc opac/svc};    # Files without extension
9
9
10
plan tests => scalar @files;
10
plan tests => scalar @files;
11
11
12
- 

Return to bug 38664