in reply to Re: Moose - MOP.pm funny
in thread Moose - MOP.pm funny
Let me know if you need anything else - I'm not a perl developer!package Avbrief::EAD::Processor; use Moose; use Avbrief::TypeConstraints; our $VERSION = 3.00; has file => (isa=>'ReadableFile', is=>'ro', required=>1); has logger => (isa=>'Logger', is=>'ro', required=>1, handles=>[qw/log +error debug/]); has schema => (isa=>'Avbrief::DataLayer::DBIC', is=>'ro'); sub process { die "overide me!" }; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Moose - MOP.pm funny
by ikegami (Patriarch) on Mar 09, 2011 at 17:35 UTC |