__PACKAGE__->meta->add_attribute('roles' => (reader => 'roles'));
+sub is_conflict { 1 }
+
1;
__END__
C<Moose::Meta::Role::Method::Conflicted> is a subclass of
L<Moose::Meta::Role::Method::Required>.
+=head1 METHODS
+
+=over 4
+
+=item B<< $method->is_conflict >>
+
+Returns whether the method requirement is due to a conflict. By default for
+this class, it's true.
+
+=back
+
=head1 BUGS
All complex software has bugs lurking in it, and this module is no
sub new { shift->_new(@_) }
+sub is_conflict { 0 }
+
1;
__END__
Returns the required method's name, as provided to the constructor.
+=item B<< $method->is_conflict >>
+
+Returns whether the method requirement is due to a conflict. By default for
+this class, it's false.
+
=back
=head1 BUGS