upgraded to phpunit 8 (#1155)
This commit is contained in:
@@ -69,8 +69,8 @@ abstract class AbstractCalculator
|
||||
public function getTax(): float
|
||||
{
|
||||
$vat = $this->getVat();
|
||||
if (0 === $vat) {
|
||||
return 0;
|
||||
if (0.00 === $vat) {
|
||||
return 0.00;
|
||||
}
|
||||
|
||||
$percent = $vat / 100.00;
|
||||
|
||||
Reference in New Issue
Block a user