-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b8a4bd4
commit f502452
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
namespace AnourValar\LaravelAtom\Helpers; | ||
|
||
class NumberHelper | ||
{ | ||
/** | ||
* Canonize | ||
* | ||
* @param int|float|string|null $amount | ||
* @return int|null | ||
*/ | ||
public function encodeMultiple(int|float|string|null $amount): ?int | ||
{ | ||
if (is_null($amount)) { | ||
return null; | ||
} | ||
|
||
return round($amount, config('atom.number.multiple_round')) * config('atom.number.multiple'); | ||
} | ||
|
||
/** | ||
* Formatting (for display) | ||
* | ||
* @param int|null $amount | ||
* @return float|null | ||
*/ | ||
public function decodeMultiple(?int $amount): float|null | ||
{ | ||
if (! isset($amount)) { | ||
return null; | ||
} | ||
|
||
return round($amount / config('atom.number.multiple'), config('atom.number.multiple_round')); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters