sman has asked for the wisdom of the Perl Monks concerning the following question:
Can I say the following two snippets have the same effect?
#[1] package Result::Item; use Moose; extends 'DBIx::Class::Core'; #[2] package Result::Item; use Moose; extends 'DBIx::Class'; __PACKAGE__->load_components( "Core" );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Question about load_components()
by stvn (Monsignor) on Jan 23, 2010 at 00:34 UTC | |
by sman (Beadle) on Jan 24, 2010 at 03:15 UTC | |
by ikegami (Patriarch) on Jan 24, 2010 at 04:35 UTC | |
by sman (Beadle) on Jan 24, 2010 at 09:07 UTC | |
|
Re: Question about load_components()
by ikegami (Patriarch) on Jan 22, 2010 at 23:19 UTC |