/lib/HTML/FormHandler/Base.pm
Perl | 15 lines | 8 code | 4 blank | 3 comment | 0 complexity | ad4840b13462ba73958051f465e97d3c MD5 | raw file
1package HTML::FormHandler::Base; 2# ABSTRACT: stub 3 4use Moose; 5 6with 'HTML::FormHandler::Widget::Form::Simple'; 7 8# here to make it possible to combine the Blocks role with a role 9# setting the render_list without an 'excludes' 10sub has_render_list { } 11sub build_render_list {[]} 12 13__PACKAGE__->meta->make_immutable; 14use namespace::autoclean; 151;