1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# This file is a modified copy of MooseX/Traits/Attribute/Chained.pm
# Carl Franks 2014
#
# This file is part of MooseX-Attribute-Chained
#
# This software is copyright (c) 2012 by Moritz Onken.
#
# 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::Traits::Attribute::FormFuChained;
use strict;
our $VERSION = '2.05'; # VERSION
# ABSTRACT: DEPRECATED
use Moose::Role;
use MooseX::FormFuChainedAccessors;
sub accessor_metaclass { 'MooseX::FormFuChainedAccessors' }
no Moose::Role;
1;
|