/usr/local/CPAN/PerlActor/PerlActor/Command/Null.pm


package PerlActor::Command::Null;
use strict;

use base 'PerlActor::Command';

#===============================================================================================
# Public Methods
#===============================================================================================

sub execute { };

#===============================================================================================
# Protected Methods - Don't even think about calling these from outside the class.
#===============================================================================================

# Keep Perl happy.
1;