Add Repository
This commit is contained in:
parent
c8304a48c7
commit
d872d3e65b
|
@ -0,0 +1,13 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Pdf;
|
||||||
|
|
||||||
|
abstract class Repository
|
||||||
|
{
|
||||||
|
|
||||||
|
public function number(int $number): string
|
||||||
|
{
|
||||||
|
return number_format($number / 100, 2, '.', '');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue