project grouped invoice calculator (#892)

This commit is contained in:
Kevin Papst
2019-07-24 17:45:51 +02:00
committed by GitHub
parent 56e276939b
commit 53eda31179
12 changed files with 346 additions and 97 deletions

View File

@@ -69,7 +69,7 @@ abstract class AbstractCalculator
public function getTax(): float
{
$vat = $this->getVat();
if (0 == $vat) {
if (0 === $vat) {
return 0;
}