@@ -, +, @@ - add empty pod blocks for internal object_class methods --- Koha/StockRotationItems.pm | 4 ++++ Koha/StockRotationRotas.pm | 4 ++++ Koha/StockRotationStages.pm | 4 ++++ 3 files changed, 12 insertions(+) --- a/Koha/StockRotationItems.pm +++ a/Koha/StockRotationItems.pm @@ -51,6 +51,10 @@ sub _type { return 'Stockrotationitem'; } +=head3 object_class + +=cut + sub object_class { return 'Koha::StockRotationItem'; } --- a/Koha/StockRotationRotas.pm +++ a/Koha/StockRotationRotas.pm @@ -88,6 +88,10 @@ sub _type { return 'Stockrotationrota'; } +=head3 object_class + +=cut + sub object_class { return 'Koha::StockRotationRota'; } --- a/Koha/StockRotationStages.pm +++ a/Koha/StockRotationStages.pm @@ -73,6 +73,10 @@ sub _type { return 'Stockrotationstage'; } +=head3 object_class + +=cut + sub object_class { return 'Koha::StockRotationStage'; } --