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 Form::Toolkit::Field::String;
$Form::Toolkit::Field::String::VERSION = '0.007';
use Moose;

extends qw/Form::Toolkit::Field/;

=head1 NAME

Form::Toolkit::Field::String - A Pure and single string field.

=cut

has '+value' => ( isa => 'Str' );

__PACKAGE__->meta->short_class('String');
__PACKAGE__->meta->make_immutable();
1;