for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace LAShowroom\TaxJarBundle\Model\Response;
class TaxDetail
{
/**
* @var float
*/
private $amount;
private $taxRate;
private $collectable;
* @param float $amount
* @param float $taxRate
* @param float $collectable
public function __construct($amount, $taxRate, $collectable)
$this->amount = $amount;
$this->taxRate = $taxRate;
$this->collectable = $collectable;
}
* @return float
public function getAmount()
return $this->amount;
public function getTaxRate()
return $this->taxRate;
public function getCollectable()
return $this->collectable;