first round of Perl::Critic cleanups. Do not use return undef, use a bare return instead
This commit is contained in:
parent
75041656ee
commit
96178fd70c
92 changed files with 209 additions and 209 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue