the repository now lives at https://github.com/moose/MooseX-ClassAttributes
[gitmo/MooseX-ClassAttribute.git] / lib / MooseX / ClassAttribute / Trait / Application.pm
index 3ccf0f7..5578520 100644 (file)
@@ -7,7 +7,24 @@ use namespace::autoclean;
 use Moose::Role;
 
 after apply_attributes => sub {
-    shift->apply_class_attributes(@_);
+    shift->_apply_class_attributes(@_);
 };
 
 1;
+
+# ABSTRACT: A trait that supports role application for roles with class attributes
+
+__END__
+
+=pod
+
+=head1 DESCRIPTION
+
+This trait is used to allow the application of roles containing class
+attributes.
+
+=head1 BUGS
+
+See L<MooseX::ClassAttribute> for details.
+
+=cut