Devel::PerlySense::Project::Unknown - A Project null object.


Devel-PerlySense documentation Contained in the Devel-PerlySense distribution.

Index


Code Index:

NAME

Top

Devel::PerlySense::Project::Unknown - A Project null object.

SYNOPSIS

Top

DESCRIPTION

Top

A Project::Unknown indicates the lack of a project being defined.

PROPERTIES

Top

dirProject

The effective project root dir.

Readonly.

AUTHOR

Top

Johan Lindström, <johanl[ÄT]DarSerMan.com>

BUGS

Top

Please report any bugs or feature requests to bug-devel-perlysense@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Devel-PerlySense. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


Devel-PerlySense documentation Contained in the Devel-PerlySense distribution.




package Devel::PerlySense::Project::Unknown;
use base "Devel::PerlySense::Project";

our $VERSION = '0.01';





use strict;
use warnings;
use Carp;
use Data::Dumper;





sub dirProject {
    return "";
}





1;





__END__