https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40817
--- Comment #20 from Martin Renvoize (ashimema) <[email protected]> --- Created attachment 193208 --> https://bugs.koha-community.org/bugzilla3/attachment.cgi?id=193208&action=edit Bug 40817: Fix C3 MRO compilation errors in child classes Explicitly load parent classes before inheritance declarations to resolve C3 method resolution order errors that occurred during QA syntax checking. Modern::Perl enables C3 MRO by default, and the base pragma needs the parent class to be fully loaded before establishing inheritance. Adding explicit 'use Parent::Class;' statements before 'use base qw(Parent::Class);' ensures proper C3 linearization during compile-time checks. This resolves QA script failures while maintaining all existing functionality. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
