The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package FormValidator::LazyWay::Fix;

use strict;
use warnings;
use Carp;
use UNIVERSAL::require;
use base qw/FormValidator::LazyWay::Setting/;
__PACKAGE__->mk_accessors(qw/self name/);

sub init {
    my $self = shift;
    $self->self(__PACKAGE__);
    $self->name('fix');
}

1;