package FormValidator::LazyWay::Rule; use strict; use warnings; use Carp; use base qw/FormValidator::LazyWay::Setting/; __PACKAGE__->mk_accessors(qw/self name/); sub init { my $self = shift; $self->self(__PACKAGE__); $self->name('rule'); } 1;