| File-Corresponding documentation | Contained in the File-Corresponding distribution. |
File::Corresponding::File::Found - A file that was found in the file system, given a matching profile
File that was found.
Profile that was used to match against.
| File-Corresponding documentation | Contained in the File-Corresponding distribution. |
use strict; package File::Corresponding::File::Found; use Moose; use Data::Dumper; use MooseX::Types::Path::Class qw( Dir File ); use File::Corresponding::File::Profile;
has file => ( is => 'ro', isa => File, coerce => 1, );
has matching_profile => (is => 'ro', isa => 'File::Corresponding::File::Profile'); 1; __END__