Remove unneeded =cut commands, and various other cleanups.
[catagits/Gitalist.git] / lib / Gitalist / Git / Object / Tree.pm
CommitLineData
467fa7d9 1package Gitalist::Git::Object::Tree;
2use MooseX::Declare;
3
0250a92d 4class Gitalist::Git::Object::Tree
5 extends Gitalist::Git::Object
6 with Gitalist::Git::Object::HasTree {
98390bf6 7 has '+type' => ( default => 'tree' );
0250a92d 8 has '+_gpp_obj' => ( handles => [ 'directory_entries',
9 ],
467fa7d9 10 );
0250a92d 11 }
775e96e0 12
131;
14
15__END__
16
17
18=head1 NAME
19
20Gitalist::Git::Object::Tree
21
22=head1 DESCRIPTION
23
24Gitalist::Git::Object::Tree.
25
26=head1 AUTHORS
27
28See L<Gitalist> for authors.
29
30=head1 LICENSE
31
32See L<Gitalist> for the license.
33
34=cut