some POD fixes
This commit is contained in:
parent
f1759f5cd5
commit
0619ec3082
2 changed files with 22 additions and 4 deletions
|
|
@ -21,13 +21,13 @@ Package WebGUI::Shop::PayDriver
|
||||||
|
|
||||||
=head1 DESCRIPTION
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
This package is the base class for all modules which implement a pyament driver.
|
This package is the base class for all modules which implement a payment driver.
|
||||||
|
|
||||||
=head1 SYNOPSIS
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
use WebGUI::Shop::PayDriver;
|
use WebGUI::Shop::PayDriver;
|
||||||
|
|
||||||
my $tax = WebGUI::Shop::PayDriver->new($session);
|
my $payDriver = WebGUI::Shop::PayDriver->new($session);
|
||||||
|
|
||||||
=head1 METHODS
|
=head1 METHODS
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,25 @@
|
||||||
package WebGUI::Shop::TaxDriver;
|
package WebGUI::Shop::TaxDriver;
|
||||||
|
|
||||||
|
=head1 NAME
|
||||||
|
|
||||||
|
Package WebGUI::Shop::TaxDriver
|
||||||
|
|
||||||
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
|
This package is the base class for all modules which implement a tax driver.
|
||||||
|
|
||||||
|
=head1 SYNOPSIS
|
||||||
|
|
||||||
|
use WebGUI::Shop::TaxDriver;
|
||||||
|
|
||||||
|
my $taxDriver = WebGUI::Shop::TaxDriver->new($session);
|
||||||
|
|
||||||
|
=head1 METHODS
|
||||||
|
|
||||||
|
These subroutines are available from this package:
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
use Class::InsideOut qw{ :std };
|
use Class::InsideOut qw{ :std };
|
||||||
|
|
@ -98,8 +118,6 @@ The sku for which the tax rate must be determined. Should be a WebGUI::Asset::Sk
|
||||||
|
|
||||||
Optional, the shipping address for which to calculate the tax. Must be an instance of WebGUI::Shop::Address.
|
Optional, the shipping address for which to calculate the tax. Must be an instance of WebGUI::Shop::Address.
|
||||||
|
|
||||||
=head
|
|
||||||
|
|
||||||
=cut
|
=cut
|
||||||
|
|
||||||
sub getTaxRate {
|
sub getTaxRate {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue