for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @license MIT
* @copyright 2013 - 2016 Cross Solution <http://cross-solution.de>
*/
/** */
namespace Orders\Options;
use Zend\Stdlib\AbstractOptions;
* ${CARET}
* @author Mathias Gelhausen <[email protected]>
* @todo write test
class ModuleOptions extends AbstractOptions
{
* Currency (ISO 4217)
* @ODM\String
* @var string
protected $currency = 'EUR';
* Currency symbol.
protected $currencySymbol = '€';
* The tax rate in percent.
* @var float
protected $taxRate = 19;
* @param string $currency
* @return self
public function setCurrency($currency)
$this->currency = $currency;
return $this;
}
* @return string
public function getCurrency()
return $this->currency;
* @param string $currencySymbol
public function setCurrencySymbol($currencySymbol)
$this->currencySymbol = $currencySymbol;
public function getCurrencySymbol()
return $this->currencySymbol;
* @param float $taxRate
public function setTaxRate($taxRate)
$this->taxRate = $taxRate;
* @return float
public function getTaxRate()
return $this->taxRate;