Email::MIME::Kit::Role::Component - things that are kit components


Email-MIME-Kit documentation Contained in the Email-MIME-Kit distribution.

Index


Code Index:

NAME

Top

Email::MIME::Kit::Role::Component - things that are kit components

VERSION

Top

version 2.093070

DESCRIPTION

Top

All (or most, anyway) components of an Email::MIME::Kit will perform this role. Its primary function is to provide a kit attribute that refers back to the Email::MIME::Kit into which the component was installed.

AUTHOR

Top

  Ricardo Signes <rjbs@cpan.org>

COPYRIGHT AND LICENSE

Top


Email-MIME-Kit documentation Contained in the Email-MIME-Kit distribution.

package Email::MIME::Kit::Role::Component;
our $VERSION = '2.093070';


use Moose::Role;
# ABSTRACT: things that are kit components


has kit => (
  is  => 'ro',
  isa => 'Email::MIME::Kit',
  required => 1,
  weak_ref => 1,
);

no Moose::Role;
1;

__END__