Add Repository

This commit is contained in:
philipp lang 2021-07-17 15:25:50 +02:00
parent c8304a48c7
commit d872d3e65b
1 changed files with 13 additions and 0 deletions

13
app/Pdf/Repository.php Normal file
View File

@ -0,0 +1,13 @@
<?php
namespace App\Pdf;
abstract class Repository
{
public function number(int $number): string
{
return number_format($number / 100, 2, '.', '');
}
}