for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WSW\SiftScience\Entities;
/**
* Class CreditPoint
*
* @package WSW\SiftScience\Entities
* @author Ronaldo Matos Rodrigues <[email protected]>
*/
class CreditPoint
{
* @var int
private $amount;
* @var string
private $creditPointType;
* @return int
public function getAmount()
return $this->amount;
}
* @param int $amount
* @return CreditPoint
public function setAmount($amount)
$this->amount = (int) $amount;
return $this;
* @return string
public function getCreditPointType()
return $this->creditPointType;
* @param string $creditPointType
public function setCreditPointType($creditPointType)
$this->creditPointType = $creditPointType;