added decimal format variable for invoice duration (#1037)

This commit is contained in:
Kevin Papst
2019-08-15 21:31:13 +02:00
committed by GitHub
parent b5972bb680
commit 9611646bc6
10 changed files with 119 additions and 21 deletions

View File

@@ -89,4 +89,13 @@ abstract class AbstractRenderer
{
return $this->extension->duration($seconds);
}
/**
* @param int $seconds
* @return mixed
*/
protected function getFormattedDecimalDuration($seconds)
{
return $this->extension->durationDecimal($seconds);
}
}