Convert from Module::Install to Dist::Zilla
[gitmo/MooseX-Types-Structured.git] / lib / MooseX / Types / Structured / OverflowHandler.pm
index 20b9f7a..98ccb80 100644 (file)
@@ -4,6 +4,10 @@ use Moose;
 
 use overload '""' => 'name', fallback => 1;
 
+=attr type_constraint
+
+=cut
+
 has type_constraint => (
     is       => 'ro',
     isa      => 'Moose::Meta::TypeConstraint',
@@ -11,6 +15,10 @@ has type_constraint => (
     handles  => [qw/check/],
 );
 
+=method name
+
+=cut
+
 sub name {
     my ($self) = @_;
     return 'slurpy ' . $self->type_constraint->name;