in reply to Re: Use Moose in Controller and Model
in thread Use Moose in Controller and Model
with either:use Moose; use base 'Catalyst::Model::DBIC::Schema';
oruse Moose; BEGIN { extends 'Catalyst::Model::DBIC::Schema' };
(same for Controller), the problem solved. Moose can work well with my Catalyst app now.use Moose; extends 'Catalyst::Model::DBIC::Schema';
|
|---|