Cleaned up Code Comments and added Type-Hinting to all Class/Functions

This commit is contained in:
Sammie S. Taunton
2013-12-03 14:29:00 -06:00
parent caa71466fe
commit e63d28723e
30 changed files with 5686 additions and 3407 deletions

View File

@@ -1,25 +1,37 @@
<?php
namespace PayPal\Api;
use PayPal\Common\PPModel;
class Transactions extends PPModel {
/**
* Amount being collected.
* @param PayPal\Api\Amount $amount
*/
public function setAmount($amount) {
$this->amount = $amount;
return $this;
}
/**
* Amount being collected.
* @return PayPal\Api\Amount
*/
public function getAmount() {
return $this->amount;
}
/**
* Class Transactions
*
* @property \PayPal\Api\Amount amount
*/
class Transactions extends PPModel
{
/**
* Set Amount
*
* @param \PayPal\Api\Amount $amount
*
* @return $this
*/
public function setAmount($amount)
{
$this->amount = $amount;
return $this;
}
/**
* Get Amount
*
* @return \PayPal\Api\Amount
*/
public function getAmount()
{
return $this->amount;
}
}