=head1 NAME Devel::PerlySense::Project::Unknown - A Project null object. =head1 SYNOPSIS =head1 DESCRIPTION A Project::Unknown indicates the lack of a project being defined. =cut package Devel::PerlySense::Project::Unknown; use base "Devel::PerlySense::Project"; our $VERSION = '0.01'; use strict; use warnings; use Carp; use Data::Dumper; =head1 PROPERTIES =head2 dirProject The effective project root dir. Readonly. =cut sub dirProject { return ""; } 1; __END__ =head1 AUTHOR Johan Lindström, C<< >> =head1 BUGS Please report any bugs or feature requests to C, or through the web interface at L. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. =head1 ACKNOWLEDGEMENTS =head1 COPYRIGHT & LICENSE Copyright 2005 Johan Lindström, All Rights Reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut