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

(-)a/Koha/SMS/Provider.pm (-2 / +2 lines)
Lines 50-60 sub patrons_using { Link Here
50
    return Koha::Borrowers->search( { sms_provider_id => $self->id } )->count();
50
    return Koha::Borrowers->search( { sms_provider_id => $self->id } )->count();
51
}
51
}
52
52
53
=head3 type
53
=head3 _type
54
54
55
=cut
55
=cut
56
56
57
sub type {
57
sub _type {
58
    return 'SmsProvider';
58
    return 'SmsProvider';
59
}
59
}
60
60
(-)a/Koha/SMS/Providers.pm (-3 / +2 lines)
Lines 35-45 Koha::SMS::Providers - Koha SMS Provider object set class Link Here
35
35
36
=cut
36
=cut
37
37
38
=head3 type
38
=head3 _type
39
39
40
=cut
40
=cut
41
41
42
sub type {
42
sub _type {
43
    return 'SmsProvider';
43
    return 'SmsProvider';
44
}
44
}
45
45
46
- 

Return to bug 9021