Bug 15446: (follow-up) Rename Koha::Object[s]->type with _type
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 5 Jan 2016 15:24:46 +0000 (15:24 +0000)
committerJesse Weaver <jweaver@bywatersolutions.com>
Fri, 12 Feb 2016 19:35:57 +0000 (12:35 -0700)
Some occurrences have been pushed in the meantime.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Jesse Weaver <jweaver@bywatersolutions.com>
12 files changed:
Koha/Authorities.pm
Koha/Authority.pm
Koha/Authority/Type.pm
Koha/Authority/Types.pm
Koha/BiblioFramework.pm
Koha/BiblioFrameworks.pm
Koha/IssuingRule.pm
Koha/IssuingRules.pm
Koha/Subscription.pm
Koha/Subscription/Histories.pm
Koha/Subscription/History.pm
Koha/Subscriptions.pm

index c2a75b9..22ce7a2 100644 (file)
@@ -41,7 +41,7 @@ Koha::Authorities - Koha Authority object set class
 
 =cut
 
-sub type {
+sub _type {
     return 'AuthHeader';
 }
 
index c46ab9e..b03737d 100644 (file)
@@ -39,7 +39,7 @@ Koha::Authority - Koha Authority Object class
 
 =cut
 
-sub type {
+sub _type {
     return 'AuthHeader';
 }
 
index 73045fc..e882096 100644 (file)
@@ -42,7 +42,7 @@ sub auth_tag_structures {
 
 =cut
 
-sub type {
+sub _type {
     return 'AuthType';
 }
 
index 2df7d24..ccaef9d 100644 (file)
@@ -39,7 +39,7 @@ Koha::Authority::Types - Koha Authority Type Object set class
 
 =cut
 
-sub type {
+sub _type {
     return 'AuthType';
 }
 
index 7ad542d..d9ade57 100644 (file)
@@ -37,7 +37,7 @@ Koha::BiblioFramework - Koha BiblioFramework Object class
 
 =cut
 
-sub type {
+sub _type {
     return 'BiblioFramework';
 }
 
index 8ccbea5..1e2931c 100644 (file)
@@ -39,7 +39,7 @@ Koha::BiblioFrameworks - Koha BiblioFramework Object set class
 
 =cut
 
-sub type {
+sub _type {
     return 'BiblioFramework';
 }
 
index 4b3d012..9d81db8 100644 (file)
@@ -35,7 +35,7 @@ Koha::Hold - Koha Hold object class
 
 =cut
 
-sub type {
+sub _type {
     return 'Issuingrule';
 }
 
index 5c1b0bb..53f5b84 100644 (file)
@@ -35,7 +35,7 @@ Koha::IssuingRules - Koha IssuingRules object set class
 
 =cut
 
-sub type {
+sub _type {
     return 'Issuingrule';
 }
 
index 1ba0c16..332a018 100644 (file)
@@ -39,7 +39,7 @@ Koha::Subscription - Koha Subscription Object class
 
 =cut
 
-sub type {
+sub _type {
     return 'Subscription';
 }
 
index c7e1c8c..440c022 100644 (file)
@@ -41,7 +41,7 @@ Koha::Subscription::Histories - Koha Subscription Histories Object class
 
 =cut
 
-sub type {
+sub _type {
     return 'Subscriptionhistory';
 }
 
index b282fa3..1722d11 100644 (file)
@@ -39,7 +39,7 @@ Koha::Subscription::History - Koha Subscription History Object class
 
 =cut
 
-sub type {
+sub _type {
     return 'Subscriptionhistory';
 }
 
index 316bec7..3538c15 100644 (file)
@@ -41,7 +41,7 @@ Koha::Subscription - Koha Subscription Object class
 
 =cut
 
-sub type {
+sub _type {
     return 'Subscription';
 }