Skip to content

Commit

Permalink
Merge pull request net-shell#3 from Tizianoz93/patch-1
Browse files Browse the repository at this point in the history
Update Paypal.php
  • Loading branch information
ash-rain committed Jul 30, 2016
2 parents fdf8f4a + 99f955d commit fa50098
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions src/Netshell/Paypal/Paypal.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use PayPal\Api\Capture;
use PayPal\Api\CreditCard;
use PayPal\Api\CreditCardToken;
use PayPal\Api\FlowConfig;
use PayPal\Api\FundingInstrument;
use PayPal\Api\Item;
use PayPal\Api\ItemList;
Expand All @@ -19,6 +20,7 @@
use PayPal\Api\Payment;
use PayPal\Api\PaymentExecution;
use PayPal\Api\PaymentHistory;
use PayPal\Api\Presentation;
use PayPal\Api\RedirectUrls;
use PayPal\Api\Refund;
use PayPal\Api\RelatedResources;
Expand Down Expand Up @@ -97,7 +99,20 @@ public function fundingInstrument()
{
return new FundingInstrument;
}

/**
* @return Paypal\Api\FlowConfig
*/
public function FlowConfig()
{
return new FlowConfig;
}
/**
* @return Paypal\Api\Presentation
*/
public function Presentation()
{
return new Presentation;
}
/**
* @return Paypal\Api\Item
*/
Expand All @@ -115,7 +130,7 @@ public function itemList()
}

/**
* @return Paypal\Api\InputItems
* @return Paypal\Api\InputFields
*/
public function inputFields()
{
Expand Down

0 comments on commit fa50098

Please sign in to comment.