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