first round of Perl::Critic cleanups. Do not use return undef, use a bare return instead

This commit is contained in:
Colin Kuskie 2007-12-05 00:30:43 +00:00
parent 75041656ee
commit 96178fd70c
92 changed files with 209 additions and 209 deletions

View file

@ -134,7 +134,7 @@ You only need to override this method if your gateway uses a webbased contacting
=cut
sub confirmRecurringTransaction {
return undef;
return;
}
#-------------------------------------------------------------------
@ -277,7 +277,7 @@ The term number you want the status of.
=cut
sub getRecurringPaymentStatus {
return undef;
return;
}
#-------------------------------------------------------------------
@ -383,7 +383,7 @@ A hashref containing:
=cut
sub normalTransaction {
return undef;
return;
}
#-------------------------------------------------------------------
@ -408,7 +408,7 @@ A hashref containing:
=cut
sub recurringTransaction {
return undef;
return;
}
#-------------------------------------------------------------------