in reply to Re^8: What is YOUR Development Process?
in thread What is YOUR Development Process?
To me, each application should have its own subclass, even if that class is nothing more than
If only to avoid the problem that you're discussing.package Our::Web::Apps::Foo; use base 'Our::Web::Apps'; 1;
|
---|