Exemplo n.º 1
0
 public function calcTaxe(Investiment $invest)
 {
     $value[$this->name] = floatval($invest->getGain()) * $this->taxe / 100;
     return $value;
 }
Exemplo n.º 2
0
 public function calcTaxe(Investiment $invest)
 {
     $valueTaxe = array('name' => $this->name, 'value' => floatval($invest->getGain()) * $this->taxe / 100);
     return $valueTaxe;
 }