replaced return; with return undef;

This commit is contained in:
JT Smith 2008-01-24 21:58:15 +00:00
parent ffa90c5fbd
commit fa09c41598
113 changed files with 287 additions and 286 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;
return undef;
}
#-------------------------------------------------------------------
@ -277,7 +277,7 @@ The term number you want the status of.
=cut
sub getRecurringPaymentStatus {
return;
return undef;
}
#-------------------------------------------------------------------
@ -383,7 +383,7 @@ A hashref containing:
=cut
sub normalTransaction {
return;
return undef;
}
#-------------------------------------------------------------------
@ -408,7 +408,7 @@ A hashref containing:
=cut
sub recurringTransaction {
return;
return undef;
}
#-------------------------------------------------------------------