Skip to content

Commit

Permalink
Improvement for code samples
Browse files Browse the repository at this point in the history
  • Loading branch information
Paymentwall committed Jan 9, 2014
1 parent ddfd521 commit 616c9ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Then use a code sample below.
##Digital Goods API

####Initializing Paymentwall
<pre><code>require_once('/path/to/paymentwall-php/libs/paymentwall.php');
<pre><code>require_once('/path/to/paymentwall-php/lib/paymentwall.php');
Paymentwall_Base::setApiType(Paymentwall_Base::API_GOODS);
Paymentwall_Base::setAppKey('YOUR_APPLICATION_KEY'); // available in your Paymentwall merchant area
Paymentwall_Base::setSecretKey('YOUR_SECRET_KEY'); // available in your Paymentwall merchant area
Expand Down Expand Up @@ -74,7 +74,7 @@ if ($pingback->validate()) {
##Virtual Currency API

####Initializing Paymentwall
<pre><code>require_once('/path/to/paymentwall-php/libs/paymentwall.php');
<pre><code>require_once('/path/to/paymentwall-php/lib/paymentwall.php');
Paymentwall_Base::setApiType(Paymentwall_Base::API_VC);
Paymentwall_Base::setAppKey('YOUR_SECRET_KEY'); // available in your Paymentwall merchant area
Paymentwall_Base::setSecretKey('YOUR_SECRET_KEY'); // available in your Paymentwall merchant area
Expand Down Expand Up @@ -108,7 +108,7 @@ if ($pingback->validate()) {
##Cart API

####Initializing Paymentwall
<pre><code>require_once('/path/to/paymentwall-php/libs/paymentwall.php');
<pre><code>require_once('/path/to/paymentwall-php/lib/paymentwall.php');
Paymentwall_Base::setApiType(Paymentwall_Base::API_CART);
Paymentwall_Base::setAppKey('YOUR_APPLICATION_KEY'); // available in your Paymentwall merchant area
Paymentwall_Base::setSecretKey('YOUR_SECRET_KEY'); // available in your Paymentwall merchant area
Expand Down

0 comments on commit 616c9ec

Please sign in to comment.