Skip to content

Commit 914d4a0

Browse files
authored
Merge pull request #153 from LibreCodeCoop/fix/return-row-and-not-column
fix: taxa mínima estava pegando a máxima
2 parents a444854 + fe9002e commit 914d4a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Service/Movimentacao.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ public function getPercentualMaximo(): float
395395

396396
public function getTaxaMinima(): float
397397
{
398-
return $this->taxaMaxima;
398+
return $this->taxaMinima;
399399
}
400400

401401
public function getTaxaMaxima(): float

0 commit comments

Comments
 (0)