#
# This file is part of MooseX-Attribute-Chained
#
# This software is copyright (c) 2017 by Tom Hukins.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
package MooseX::ChainedAccessors::Accessor;
$MooseX::ChainedAccessors::Accessor::VERSION = '1.0.3';
# ABSTRACT: DEPRECATED
use strict;
use warnings;
use base 'Moose::Meta::Method::Accessor';
sub _inline_post_body {
return 'return $_[0] if (scalar(@_) >= 2);' . "\n";
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
MooseX::ChainedAccessors::Accessor - DEPRECATED
=head1 VERSION
version 1.0.3
=head1 AUTHORS
=over 4
=item *
Tom Hukins <tom@eborcom.com>
=item *
Moritz Onken <onken@netcubed.de>
=item *
David McLaughlin <david@dmclaughlin.com>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2017 by Tom Hukins.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<http://rt.cpan.org/Public/Dist/Display.html?Name=MooseX-Attribute-Chained>
or by email to L<bug-moosex-attribute-chained at
rt.cpan.org|mailto:bug-moosex-attribute-chained at rt.cpan.org>.
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=cut